Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <style>
  2. @keyframes shake {
  3. 10%, 90% {
  4. transform: translate3d(-10px, 30px, 20px);
  5. }
  6.  
  7. 20%, 80% {
  8. transform: translate3d(20px, -50px, 50px);
  9. }
  10.  
  11. 30%, 50%, 70% {
  12. transform: translate3d(-40px, 20px, -30px);
  13. }
  14.  
  15. 40%, 60% {
  16. transform: translate3d(40px, -10px, -60px);
  17. }
  18. }
  19.  
  20. body {
  21. -moz-animation-name: shake;
  22. -moz-animation-duration: 4s;
  23. -moz-animation-iteration-count: 200;
  24. -webkit-animation-name: shake;
  25. -webkit-animation-duration: 4s;
  26. -webkit-animation-iteration-count: 200;
  27. }
  28.  
  29.  
  30. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement