What do the percentages do in this CSS snippet? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What do the percentages do in this CSS snippet?

#header div { 0% { text-shadow: 0px -2px 20px #E88E00; } 25% { text-shadow: 0px 0px 25px #E44E00; } 50% { text-shadow: 0px -2px 30px #E00E00; } 75% { text-shadow: 0px 0px 25px #E44E00; } 100% { text-shadow: 0px -2px 20px #E88E00; } }

11th Feb 2017, 8:08 PM
Wesley Duckett
Wesley Duckett - avatar
2 Answers
+ 1
This isn't a valid css code... Maybe ( surely :P ) you've found something like: #header div { animation: /* some parameters */; } @keyframes animName { 0% { text-shadow: 0px -2px 20px #E88E00; } 25% { text-shadow: 0px 0px 25px #E44E00; } 50% { text-shadow: 0px -2px 30px #E00E00; } 75% { text-shadow: 0px 0px 25px #E44E00; } 100% { text-shadow: 0px -2px 20px #E88E00; } } ... and percentage set when occurs the key change of parameter, on the duration timeline of the animation ^^
14th Feb 2017, 9:05 AM
visph
visph - avatar
0
are you sure the code is valid CSS code? correct the code first.
11th Feb 2017, 10:53 PM
Hasan Al-Yazidi
Hasan Al-Yazidi - avatar