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.
30 lines (29 loc) • 745 B
text/less
@import "../css3.less";
.mblRevealv {
.transition-property(none);
.transition-duration(0s);
}
.mblRevealv.mblTransition {
.transition-property-transform();
.transition-duration(.4s);
}
.mblRevealv.mblOut {
.transform(translate3d(0px,0%,0px) ) !important;
}
.mblRevealv.mblOut.mblTransition {
.transform(translate3d(0px,-100%,0px) ) !important;
}
.mblRevealv.mblOut.mblReverse.mblTransition {
.transform(translate3d(0px,100%,0px) ) !important;
}
.mblRevealv.mblIn {
z-index: -100;
.transform(translate3d(0px,0%,-1px) ) !important;
}
.mblRevealv.mblIn.mblTransition {
.transform(translate3d(0px,0%,0px) ) !important;
}
.dj_android.dj_tablet .mblRevealv.mblTransition {
.transition-duration(.6s);
.transition-timing-function(linear);
}