How can i use @keyframes to animate my image rotate 360 linear infinite? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

How can i use @keyframes to animate my image rotate 360 linear infinite?

28th Oct 2018, 1:42 PM
Fauxy
Fauxy - avatar
1 Answer
+ 4
img { animation: turning 4s linear 0s infinite; } @keyframes turning { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } https://code.sololearn.com/WMSEQ1pfwl8P/?ref=app
28th Oct 2018, 2:05 PM
Calviղ
Calviղ - avatar