This repository was archived by the owner on Oct 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathjquery.mobile.transition.slideup.css
80 lines (75 loc) · 1.79 KB
/
jquery.mobile.transition.slideup.css
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
79
80
/* slide up */
.slideup.out {
-webkit-animation-name: fadeout;
-webkit-animation-duration: 100ms;
-moz-animation-name: fadeout;
-moz-animation-duration: 100ms;
animation-name: fadeout;
animation-duration: 100ms;
}
.slideup.in {
-webkit-transform: translateY(0);
-webkit-animation-name: slideinfrombottom;
-webkit-animation-duration: 250ms;
-moz-transform: translateY(0);
-moz-animation-name: slideinfrombottom;
-moz-animation-duration: 250ms;
transform: translateY(0);
animation-name: slideinfrombottom;
animation-duration: 250ms;
}
.slideup.in.reverse {
-webkit-animation-name: fadein;
-webkit-animation-duration: 150ms;
-moz-animation-name: fadein;
-moz-animation-duration: 150ms;
animation-name: fadein;
animation-duration: 150ms;
}
.slideup.out.reverse {
-webkit-transform: translateY(100%);
-webkit-animation-name: slideouttobottom;
-webkit-animation-duration: 200ms;
-moz-transform: translateY(100%);
-moz-animation-name: slideouttobottom;
-moz-animation-duration: 200ms;
transform: translateY(100%);
animation-name: slideouttobottom;
animation-duration: 200ms;
}
@-webkit-keyframes slideinfrombottom {
from { -webkit-transform: translateY(100%);
}
to { -webkit-transform: translateY(0);
}
}
@-moz-keyframes slideinfrombottom {
from { -moz-transform: translateY(100%);
}
to { -moz-transform: translateY(0);
}
}
@keyframes slideinfrombottom {
from { transform: translateY(100%);
}
to { transform: translateY(0);
}
}
@-webkit-keyframes slideouttobottom {
from { -webkit-transform: translateY(0);
}
to { -webkit-transform: translateY(100%);
}
}
@-moz-keyframes slideouttobottom {
from { -moz-transform: translateY(0);
}
to { -moz-transform: translateY(100%);
}
}
@keyframes slideouttobottom {
from { transform: translateY(0);
}
to { transform: translateY(100%);
}
}