dianakko

weird hover image from glitter crd

Oct 21st, 2021
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <style>
  2. img:hover { /* Start the shake animation and make the animation last for 0.5 seconds */
  3. animation: shake 3.5s; /* When the animation is finished, start again */
  4. animation-iteration-count: infinite; }
  5.  
  6. @keyframes shake { 0% {
  7. transform: translate(1px, 1px) rotate(0deg); }
  8. 10% { transform: translate(-1px, -2px) rotate(-1deg); }
  9. 20% { transform: translate(-3px, 0px) rotate(1deg); }
  10. 30% { transform: translate(3px, 2px) rotate(0deg); }
  11. 40% { transform: translate(1px, -1px) rotate(1deg); }
  12. 50% { transform: translate(-1px, 2px) rotate(-1deg); }
  13. 60% { transform: translate(-3px, 1px) rotate(0deg); }
  14. 70% { transform: translate(3px, 1px) rotate(-1deg); }
  15. 80% { transform: translate(-1px, -1px) rotate(1deg); }
  16. 90% { transform: translate(1px, 2px) rotate(0deg); }
  17. 100% { transform: translate(1px, -2px) rotate(-1deg); }
  18. }
  19. </style>
  20.  
  21. <img src="https://64.media.tumblr.com/af0ba9cfc8ec4fce0371acc3f2a5fb5d/8c436493c1c20170-f4/s540x810/b408af581d440ddc4b72833f25095f4b1b926bef.jpg
  22. ">
Advertisement
Add Comment
Please, Sign In to add comment