Created
March 11, 2016 10:46
-
-
Save Origame/1a14f76d9a317c37f00d to your computer and use it in GitHub Desktop.
Apply css transition to all with ease
This file contains hidden or 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
/* TRANSITIONS */ | |
.transitionAll{ | |
-webkit-transition: all 0.5s ease; | |
-moz-transition: all 0.5s ease; | |
-o-transition: all 0.5s ease; | |
-ms-transition: all 0.5s ease; | |
transition: all 0.5s ease; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment