Posted By


mbaumrucker on 06/01/12

Tagged


Statistics


Viewed 414 times
Favorited by 0 user(s)

CSS Transitions


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #id_of_element {
  2. -webkit-transition: all 1s ease-in-out;
  3. -moz-transition: all 1s ease-in-out;
  4. -o-transition: all 1s ease-in-out;
  5. -ms-transition: all 1s ease-in-out;
  6. transition: all 1s ease-in-out;
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.