+ 1
@keyframes repeat?
I see where to add a duration but is it possible to make the animation repeat/ loop endlessly?
4 odpowiedzi
+ 3
Try
animation-iteration-count: 10; or
animation-iteration-count: infinite;
when calling a animation in css
+ 8
animation-iteration-count: infinite;
https://www.w3schools.com/cssref/css3_pr_animation-iteration-count.asp
https://www.w3schools.com/cssref/css3_pr_animation.asp
+ 8
animation: name(animate) dur(1s) linear infinite(repeat)endless Animation).
Basic Animation
https://code.sololearn.com/WKmH8CbQhMx9/?ref=app
+ 3
I was just trying to find my way back to state I found it during my next lesson. xD These animations are very interesting.
Thank you.