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.
16 lines (15 loc) • 588 B
text/less
@import "../css3.less";
.mblDissolve.mblOut {
.animation-duration(1s);
.animation-name(mblDissolveOut);
.animation-timing-function(cubic-bezier(.25,1,.75,0));
}
.mblDissolve.mblIn {
.animation-duration(1s);
.animation-name(mblDissolveIn);
.animation-timing-function(cubic-bezier(.25,1,.75,0));
}
@-webkit-keyframes mblDissolveOut { .keyframes-opacity-from-to(1, 0); }
@keyframes mblDissolveOut { .keyframes-opacity-from-to(1, 0); }
@-webkit-keyframes mblDissolveIn { .keyframes-opacity-from-to(0, 1); }
@keyframes mblDissolveIn { .keyframes-opacity-from-to(0, 1); }