Created
February 6, 2014 08:57
-
-
Save robertmagnusson/8840657 to your computer and use it in GitHub Desktop.
Mixin easing transition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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