toxicious

Untitled

Jun 2nd, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. div
  2. {
  3. width:100px;
  4. height:100px;
  5. background:red;
  6. position:relative;
  7.  
  8. }
  9.  
  10. div:hover
  11. {
  12. animation:mymove 1s ease-out;
  13. -webkit-animation:mymove 2s infinite; /* Safari and Chrome */
  14. }
  15.  
  16. @keyframes mymove
  17. {
  18. from {transform:scale(1,1);}
  19. to {transform:scale(1.5,1.5);}
  20. }
  21.  
  22. @-webkit-keyframes mymove /* Safari and Chrome */
  23. {
  24. from {transform:scale(1,0);}
  25. to {transform:scale(2,0);}
  26. }
Advertisement
Add Comment
Please, Sign In to add comment