Battery 2.0 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Battery 2.0

How do I make it so when it reaches 20% left it turns red? https://code.sololearn.com/WiH4TOcbXW16/?ref=app

25th Feb 2022, 1:41 AM
Junior
Junior - avatar
1 Answer
+ 3
here are the keyframes that you need @keyframes loadforwds { 0%{ background-color: red; } 20%{ background-color: red; } 21%{ background-color: limegreen; } 100% { width: 240px; } } @keyframes loadback { 0% { width: 240px; background-color: limegreen; } 79%{ background-color: limegreen; } 80%{ background-color: red; } 100% { width: 0px; background-color: red; } }
25th Feb 2022, 2:32 AM
Ashfaq Naseem