How can i use @keyframes to animate my image rotate 360 linear infinite? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 10

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

28th Oct 2018, 1:42 PM
Fauxy
Fauxy - avatar
1 Resposta
+ 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