Skip to content

Instantly share code, notes, and snippets.

@LorisBachert
Last active November 13, 2015 07:00
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 LorisBachert/d330b721b2fa397bb497 to your computer and use it in GitHub Desktop.
Save LorisBachert/d330b721b2fa397bb497 to your computer and use it in GitHub Desktop.
Animating elements using CSS
.animated {
-webkit-transition: width 0.25s ease-in-out;
-moz-transition: width 0.25s ease-in-out;
-o-transition: width 0.25s ease-in-out;
-ms-transition: width 0.25s ease-in-out;
transition: width 0.25s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment