Is there any css only solution, to make this pulsating-glow effect work on IE8/9 or atleast 9?
.glow-texte {
color:#fff;
text-shadow:0 0 2px #fff;
animation:texte 2.4s linear 2s 20;
-moz-animation:texte 2.4s linear 2s 20;
-webkit-animation:texte 2.4s linear 2s 20;
}
.glow-texteEven {
color:#fff;
text-shadow:0 0 2px #fff;
animation:texte 2.4s linear 1s 20;
-moz-animation:texte 2.4s linear 1s 20;
-webkit-animation:texte 2.4s linear 1s 20;
}
.glow-texteOdd {
color:#fff;
text-shadow:0 0 2px #fff;
animation:texte 2.4s linear 2.2s 20;
-moz-animation:texte 2.4s linear 2.2s 20;
-webkit-animation:texte 2.4s linear 2.2s 20;
}