Skip to content

Instantly share code, notes, and snippets.

@plavet
Created July 8, 2012 16:08
Show Gist options
  • Save plavet/3071534 to your computer and use it in GitHub Desktop.
Save plavet/3071534 to your computer and use it in GitHub Desktop.
CSS - transition
#id_of_element {
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment