n3ito

[code] rotating image

May 21st, 2022
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <img src="imgurl" class="rotate" width="100" height="100" />
  2.  
  3. <style>
  4. .rotate {
  5. animation: rotation 8s infinite linear;
  6. }
  7.  
  8. @keyframes rotation {
  9. from {
  10. transform: rotate(0deg);
  11. }
  12. to {
  13. transform: rotate(359deg);
  14. }
  15. }
  16. </style>
Advertisement
Add Comment
Please, Sign In to add comment