Member • Jun 9, 2014
CSS3 animation for IE9 and earlier version
I have used a css3 animation for images . But it doesnot work in IE 9 and earlier version. But i need to make it work on IE 9. an easy way is to do is jquery . but i dont know how to convert it into jquery .. my CSS ANIMATION IS as follow
animation: imageAnimation 60s linear infinite 0s; @keyframes imageAnimation { 0%{ opacity:0; animation-timing-function: ease-in; } 8% { opacity:1; transform: scale(1); animation-timing-function: ease-out; } 17%{ opacity:1; transform: scale(1) rotate(0deg);}25%{ opacity:0; transform: scale(1) rotate(0deg);}100%{ opacity:0} }We can do it with jquery animate. but i dont know how to do it . can any help regarding this