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.
15 lines
588 B
15 lines
588 B
@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); }
|
|
|