Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. #poop2 {
  2. -webkit-animation-name: poop3;
  3. -webkit-animation-duration:4s;
  4. -webkit-animation-iteration-count:infinite;
  5. -webkit-animation-timing-function:linear;
  6. }
  7. #poop3 {
  8. -webkit-animation-name: poop4;
  9. -webkit-animation-duration:4s;
  10. -webkit-animation-iteration-count:infinite;
  11. -webkit-animation-timing-function:linear;
  12. }
  13.  
  14. /* @group animations */
  15. @-webkit-keyframes rotateThis {
  16. from {-webkit-transform:scale(1) rotate(0deg);}
  17. to {-webkit-transform:scale(1) rotate(360deg);}
  18. }
  19. @-webkit-keyframes poop {
  20. from {-webkit-transform:scale(1) rotate(0deg);}
  21. to {-webkit-transform:scale(0.9955) rotate(0.56deg);}
  22. }
  23. @-webkit-keyframes poop2 {
  24. from {-webkit-transform:scale(1) rotate(0deg);}
  25. to {-webkit-transform:scale(0.9955) rotate(0.30deg);}
  26. }
  27. @-webkit-keyframes poop3 {
  28. from {-webkit-transform:scale(1) rotate(360deg);}
  29. to {-webkit-transform:scale(1) rotate(-360deg);}
  30. }
  31. @-webkit-keyframes poop4 {
  32. from {-webkit-transform:scale(1) rotate(-360deg);}
  33. to {-webkit-transform:scale(1) rotate(360deg);}
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement