Guest User

Untitled

a guest
Nov 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @-webkit-keyframes roll-6 {
  2. 0% {left: 25px;}
  3. 10% {left: -75px;}
  4. 25% {left: 75px;}
  5. 50% {left: -26px;}
  6. 75% {left: -127px;}
  7. 100% {left: 127px;}
  8. }
  9.  
  10. @keyframes roll-6 {
  11. 0% {left: 25px;}
  12. 10% {left: -75px;}
  13. 25% {left: 75px;}
  14. 50% {left: -26px;}
  15. 75% {left: -127px;}
  16. 100% {left: 127px;}
  17. }
  18.  
  19. .roll-6 {
  20. -webkit-animation-name: roll-6;
  21. -webkit-animation-duration: 6s;
  22. -webkit-animation-iteration-count: 3;
  23. animation-name: roll-6;
  24. animation-duration: 6s;
  25. animation-iteration-count: 3;
  26. }
Add Comment
Please, Sign In to add comment