Advertisement
GIFCITY

spinning image

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