-
Notifications
You must be signed in to change notification settings - Fork 1
/
metamorphit.css
66 lines (59 loc) · 2.07 KB
/
metamorphit.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
.mm-metamorphit {
visibility: hidden;
}
.mm-metamorphit.mm-initialized {
visibility: visible;
}
.mm-target {
visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.mm-target.mm-active {
visibility: visible;
}
.mm-target.fade {
opacity: 0;
-webkit-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
-moz-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
-ms-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
-o-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.mm-target.mm-active.fade {
opacity: 1;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
-ms-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
}
.mm-target.slide {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
-moz-transform: translate(-100%, 0);
-ms-transform: translate(-100%, 0);
-o-transform: translate(-100%, 0);
transform: translate(-100%, 0);
-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, visibility 0s linear 0.5s;
-moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease, visibility 0s linear 0.5s;
-ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease, visibility 0s linear 0.5s;
-o-transition: opacity 0.5s ease, -o-transform 0.5s ease, visibility 0s linear 0.5s;
transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}
.mm-target.mm-active.slide {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
-ms-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
}