blob: 8a292d46324df9b58320e2f37cb3a8903d2f36e2 (
plain)
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
|
.mblZoomOut.mblOut {
z-index: 0;
-webkit-animation-duration: .5s;
-webkit-animation-name: mblZoomOutOut;
-webkit-animation-timing-function: ease-in;
}
.dj_android .mblZoomOut.mblOut {
-webkit-animation-name: mblZoomOutOutAndroid;
}
.mblZoomOut.mblIn {
z-index: -100;
-webkit-animation-duration: .5s;
-webkit-animation-name: mblZoomOutIn;
-webkit-animation-timing-function: ease-in;
}
@-webkit-keyframes mblZoomOutOut {
from {
-webkit-transform: scale(1.0);
opacity: 1;
}
to {
-webkit-transform: scale(0.0);
opacity: 0;
}
}
@-webkit-keyframes mblZoomOutOutAndroid {
from { -webkit-transform: scale(1.0); }
to { -webkit-transform: scale(0.0); }
}
@-webkit-keyframes mblZoomOutIn {
from { -webkit-transform: scale(1.0); }
to { -webkit-transform: scale(1.0); }
}
|