+ 2
How to spin an image?
Image spinning
3 odpowiedzi
+ 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);
}
}
+ 3
Use transform property
+ 1
Did you try googling? Lol are you even trying?