dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
40 lines (39 loc) • 1.27 kB
CSS
.mblRevealv {
-webkit-transition-property: none;
transition-property: none;
-webkit-transition-duration: 0s;
transition-duration: 0s;
}
.mblRevealv.mblTransition {
-webkit-transition-property: -webkit-transform;
transition-property: transform;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
.mblRevealv.mblOut {
-webkit-transform: translate3d(0px, 0%, 0px) ;
transform: translate3d(0px, 0%, 0px) ;
}
.mblRevealv.mblOut.mblTransition {
-webkit-transform: translate3d(0px, -100%, 0px) ;
transform: translate3d(0px, -100%, 0px) ;
}
.mblRevealv.mblOut.mblReverse.mblTransition {
-webkit-transform: translate3d(0px, 100%, 0px) ;
transform: translate3d(0px, 100%, 0px) ;
}
.mblRevealv.mblIn {
z-index: -100;
-webkit-transform: translate3d(0px, 0%, -1px) ;
transform: translate3d(0px, 0%, -1px) ;
}
.mblRevealv.mblIn.mblTransition {
-webkit-transform: translate3d(0px, 0%, 0px) ;
transform: translate3d(0px, 0%, 0px) ;
}
.dj_android.dj_tablet .mblRevealv.mblTransition {
-webkit-transition-duration: 0.6s;
transition-duration: 0.6s;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
}