Advertisement
ityizhuo

button swing

Jul 21st, 2021
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <style>
  2. .button-swing {
  3. font-family: Arial;
  4. color: #000;
  5. background-color: white;
  6. border: 1px solid #000;
  7. border-radius: 4px;
  8. padding: 0 16px;
  9. cursor: pointer;
  10. transition: all 0.2s ease-in-out;
  11. }
  12.  
  13. .button-swing:focus {
  14. animation: swing 1s ease;
  15. animation-iteration-count: 1;
  16. }
  17.  
  18. @keyframes swing {
  19. 15% {
  20. transform: translateX(5px);
  21. }
  22. 30% {
  23. transform: translateX(-5px);
  24. }
  25. 50% {
  26. transform: translateX(3px);
  27. }
  28. 65% {
  29. transform: translateX(-3px);
  30. }
  31. 80% {
  32. transform: translateX(2px);
  33. }
  34. 100% {
  35. transform: translateX(0);
  36. }
  37. }
  38. </style>
  39. <button class="button-swing"><a href="URL">home</a></button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement