teenagegoths

jerky rotation animation

Jun 25th, 2021 (edited)
1,547
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.17 KB | None | 0 0
  1. .jerkoff {
  2.          
  3.  animation: jerk 0.5s step-end infinite;
  4.  }
  5.  
  6. @keyframes jerk {
  7.  
  8. 0% {
  9.  transform: rotate(2deg);
  10.  }
  11.  50% {
  12.  transform: rotate(-2deg);
  13.  }
  14. }
Add Comment
Please, Sign In to add comment