How to spin an image? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to spin an image?

Image spinning

15th Nov 2020, 9:34 PM
Web Sad
Web Sad - avatar
3 Answers
+ 6
/*See this code I made for you: https://code.sololearn.com/WVPY7ErQD1g6/?ref=app Here is the css: */ .rotate { animation: rotation 3s infinite linear; } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(359deg); } }
15th Nov 2020, 11:48 PM
Galaxy-Coding (inactive)
Galaxy-Coding (inactive) - avatar
+ 3
Use transform property
15th Nov 2020, 9:53 PM
Hima
Hima - avatar
+ 1
Did you try googling? Lol are you even trying?
16th Nov 2020, 12:51 AM
Bhavya
Bhavya - avatar