-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgpuslideshow.css
More file actions
executable file
·79 lines (66 loc) · 1.57 KB
/
gpuslideshow.css
File metadata and controls
executable file
·79 lines (66 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* jQuery GPU Slideshow Plugin Required Stylesheet 1.0.0
*
* Copyright (c) 2012 Forrest Tanaka
* http://forrest-tanaka.com/
* https://www.facebook.com/ForrestTanakaPhotoWebMedia
*
* Licensed under Creative Commons Zero:
* http://creativecommons.org/publicdomain/zero/1.0/
*/
._sgchild, ._schild {
position: absolute;
display: none;
top: 0;
left: 0;
-webkit-transform: translate3d(0, 0, 0);
}
._schild {
display: block;
}
._sgcurrent {
display: block;
-webkit-animation: fade-in 1s 0s 1 normal ease-out;
-moz-animation: fade-in 1s 0s 1 normal ease-out;
-o-animation: fade-in 1s 0s 1 normal ease-out;
animation: fade-in 1s 0s 1 normal ease-out;
}
._sglast {
display: block;
-webkit-animation: fade-out 1s 0s 1 normal ease-out;
-moz-animation: fade-out 1s 0s 1 normal ease-out;
-o-animation: fade-out 1s 0s 1 normal ease-out;
animation: fade-out 1s 0s 1 normal ease-out;
}
@-webkit-keyframes fade-in {
from { opacity: 0; }
to { opacity: 100%; }
}
@-webkit-keyframes fade-out {
from { opacity: 100%; }
to { opacity: 0; }
}
@-moz-keyframes fade-in {
from { opacity: 0; }
to { opacity: 100%; }
}
@-moz-keyframes fade-out {
from { opacity: 100%; }
to { opacity: 0; }
}
@-o-keyframes fade-in {
from { opacity: 0; }
to { opacity: 100%; }
}
@-o-keyframes fade-out {
from { opacity: 100%; }
to { opacity: 0; }
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 100%; }
}
@keyframes fade-out {
from { opacity: 100%; }
to { opacity: 0; }
}