Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created February 6, 2014 08:57
Show Gist options
  • Save robertmagnusson/8840657 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8840657 to your computer and use it in GitHub Desktop.
Mixin easing transition
// Animate objects, just period of time the animation will go on.
@mixin animate($transition-time: 0.5s) {
-webkit-transition: all $transition-time ease-in-out;
-moz-transition: all $transition-time ease-in-out;
-ms-transition: all $transition-time ease-in-out;
-o-transition: all $transition-time ease-in-out;
transition: all $transition-time ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment