Posted By


adambundy on 03/23/10

Tagged


Statistics


Viewed 566 times
Favorited by 1 user(s)

css3 transitions


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

thanks to Perishable Press


Copy this code and paste it in your HTML
  1. a:link, a:visited {
  2. -webkit-transition: all 1s ease;
  3. transition: all 1s ease;
  4. background: red;
  5. color: white;
  6. }
  7. a:hover, a:active {
  8. background: white;
  9. color: red;
  10. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.