Advertisement
Guest User

Untitled

a guest
May 24th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. /**
  2. * The first commented line is your dabblet’s title
  3. */
  4. div{ width: 0; height: 100px; background: #0f0;}
  5. .shadow {
  6. -webkit-animation: shadow 1s linear 0s 1 forwards;
  7. -moz-animation: shadow 1s linear 0s 1 forwards;
  8. -o-animation: shadow 1s linear 0s 1 forwards;
  9. animation: shadow 1s linear 0s 1 forwards;
  10. }
  11. @-webkit-keyframes shadow { from { width: 0; } to { width: 178px; } }
  12. @-moz-keyframes shadow { from { width: 0; } to { width: 178px; } }
  13. @-o-keyframes shadow { from { width: 0; } to { width: 178px; } }
  14. @keyframes shadow { from { width: 0; } to { width: 178px; } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement