Skip to content

Instantly share code, notes, and snippets.

@Origame
Created March 11, 2016 10:46
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 Origame/1a14f76d9a317c37f00d to your computer and use it in GitHub Desktop.
Save Origame/1a14f76d9a317c37f00d to your computer and use it in GitHub Desktop.
Apply css transition to all with ease
/* 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