I am having some trouble with setting the animation delay in javascript. It works fine in all browsers except IE10+. IE. Every other setting is changed in IE, but not animation delay. What am I doing wrong?
f.style.AnimationDelay=(Math.random()*2)+'s';
f.style.AnimationDuration=fd+'s';
f.style.AnimationName='mymove';
f.style.webkitAnimationDelay=(Math.random()*2)+'s';
f.style.webkitAnimationDuration=fd+'s';
f.style.webkitAnimationName='mymove';
f.style.MozAnimationDelay=(Math.random()*2)+'s';
f.style.MozAnimationDuration=fd+'s';
f.style.MozAnimationName='mymove';
f.style.MSAnimationDelay=(Math.random()*2)+'s';