+ 1
Im having trouble with spinning animations
My animations are not working on Solo learn Code output.
3 ответов
+ 1
Add the following .spin css class to an element:
.spin {
animation: rt 5s linear 0s infinite;
}
@keyframes rt {
to {
transform: rotate(360deg);
}
}
https://code.sololearn.com/WqTF10Tg9HYP/?ref=app
0
You have to show your code bit so we can see where it went wrong.
0
You have to show your code but
Try using transform:rotate();🤔