Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- .image {
- width: 200px /* not needed change to your liking */;
- border-radius: 50% /* make the img a circle */;
- animation-name: spin;
- animation-duration: 4s /* how long you want the spinning to be */;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
- }
- @keyframes spin {
- from { transform:rotate(0deg); }
- to { transform:rotate(360deg); }
- }
- </style>
- <img src=https://file.garden/ZhR7DLcFMh_Z3OTH/IMG_1597.jpeg class=image>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement