animate.less
Version:
LESS cross-browser animation library. Ready for Twitter Bootstrap. Originally created by Dan Eden.
14 lines (13 loc) • 424 B
text/less
body {
-webkit-backface-visibility: hidden;
}
.animated(@animationLessTime:1s) {
-webkit-animation-duration: @animationLessTime;
-moz-animation-duration: @animationLessTime;
-o-animation-duration: @animationLessTime;
animation-duration: @animationLessTime;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
}