You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
983 B
21 lines
983 B
@import "../css3.less"; |
|
.mblZoomOut.mblOut { |
|
.animation-duration(.5s); |
|
.animation-name(mblZoomOutOut); |
|
.animation-timing-function(ease-in); |
|
} |
|
.dj_android .mblZoomOut.mblOut { |
|
.animation-name(mblZoomOutOutAndroid); |
|
} |
|
.mblZoomOut.mblIn { |
|
z-index: -100; |
|
.animation-duration(.5s); |
|
.animation-name(mblZoomOutIn); |
|
.animation-timing-function(ease-in); |
|
} |
|
@-webkit-keyframes mblZoomOutOut { .keyframes-transform-opacity-from-to-webkit(scale(1.0), 1, scale(0.0), 0); } |
|
@keyframes mblZoomOutOut { .keyframes-transform-opacity-from-to (scale(1.0), 1, scale(0.0), 0); } |
|
@-webkit-keyframes mblZoomOutOutAndroid { .keyframes-transform-from-to-webkit(scale(1.0), scale(0.0)); } |
|
@keyframes mblZoomOutOutAndroid { .keyframes-transform-from-to (scale(1.0), scale(0.0)); } |
|
@-webkit-keyframes mblZoomOutIn { .keyframes-transform-from-to-webkit(scale(1.0), scale(1.0)); } |
|
@keyframes mblZoomOutIn { .keyframes-transform-from-to (scale(1.0), scale(1.0)); }
|
|
|