How do I make my css animations work.I don't understand why it is not working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

How do I make my css animations work.I don't understand why it is not working

body { background-color:black; } div{ width:100px; height:100px; background-color:yellow; animation-name:colorchange; animation-duration:10s; } @keyframes colorchange{ 0%{background-color:yellow;} 25%{background-color:red;} 50%{background-color:blue;} 75%{background-color:green;} 100%{background-color:yellow;} }

1st Apr 2019, 5:15 PM
Joshua Andoh
Joshua Andoh - avatar
2 Answers
+ 11
You have to add : animation-iteration-count:infinite; Instead of infinite , you can add any number(the number of how many times you want the animation to start). This is why your css animation doesn't work. Try it , and tell me if it work. 😊
1st Apr 2019, 5:25 PM
🍇 Alex Tușinean 💜
🍇 Alex Tușinean 💜 - avatar
+ 1
Your code does work. Check out my jsfiddle.net link. https://jsfiddle.net/ialbertm/80yujxmk/5/
15th Apr 2019, 3:33 AM
Albert Martinez
Albert Martinez - avatar