Advertisement
nomskoo

spinning img

Apr 1st, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <img src="https://dl.dropbox.com/scl/fi/wwuu06ieo9modzurm69ez/043a04f3-removebg-preview.png?rlkey=o29ktb2se12diwypm2agm7dsw&dl=0" class="rotate" width="100" height="100" />
  2. <style>
  3.  
  4. .rotate {
  5. animation: rotation 8s infinite linear;
  6. position: absolute;
  7. right: -5em;
  8. bottom: -1em;
  9. }
  10.  
  11. @keyframes rotation {
  12. from {
  13. transform: rotate(0deg);
  14. }
  15. to {
  16. transform: rotate(359deg);
  17. }
  18. }
  19. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement