Skip to content

Instantly share code, notes, and snippets.

@heartcode
Created October 26, 2012 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heartcode/3959482 to your computer and use it in GitHub Desktop.
Save heartcode/3959482 to your computer and use it in GitHub Desktop.
CSS animation mixin
@mixin animation ($transform: background, $duration: 0.3s, $easing: ease, $delay: 0.3s) {
-webkit-transition: $transform $duration $easing $delay;
-moz-transition: $transform $duration $easing $delay;
-o-transition: $transform $duration $easing $delay;
transition: $transform $duration $easing $delay;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment