Skip to content

Instantly share code, notes, and snippets.

@collingo
Created February 9, 2012 23:14
Show Gist options
  • Save collingo/1784156 to your computer and use it in GitHub Desktop.
Save collingo/1784156 to your computer and use it in GitHub Desktop.
LESS Animation Mixin
.animate (@name, @duration: 1s, @count: infinite, @direction: normal, @function: ease-in-out) {
-moz-animation-name: @name;
-moz-animation-duration: @duration;
-moz-animation-iteration-count: @count;
-moz-animation-direction: @direction;
-moz-animation-timing-function: @function;
-webkit-animation-name: @name;
-webkit-animation-duration: @duration;
-webkit-animation-iteration-count: @count;
-webkit-animation-direction: @direction;
-webkit-animation-timing-function: @function;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment