Advertisement
jamescolin

Bouton Bidon

Feb 3rd, 2023 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <style>
  2.  
  3. #idbutton {
  4.  
  5. background: red;
  6.  
  7. border: 0;
  8.  
  9. font-size: 20px;
  10.  
  11. padding: 10px 20px;
  12.  
  13. position: relative;
  14.  
  15. animation-name: shakeAnim;
  16.  
  17. animation-duration: 5s;
  18.  
  19. animation-iteration-count: infinite;
  20.  
  21. animation-timing-function: ease-in;
  22.  
  23. cursor: pointer;
  24.  
  25. }
  26.  
  27. @keyframes shakeAnim {
  28.  
  29. 0% {left: 0}
  30.  
  31. 1% {left: -3px}
  32.  
  33. 2% {left: 5px}
  34.  
  35. 3% {left: -8px}
  36.  
  37. 4% {left: 8px}
  38.  
  39. 5% {left: -5px}
  40.  
  41. 6% {left: 3px}
  42.  
  43. 7% {left: 0}
  44.  
  45. }
  46. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement