CSS3 animation for IE9 and earlier version

maninellai

maninellai

@maninellai-ok1cac Oct 26, 2024
HI ALL,

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

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Ankita Katdare

    Ankita Katdare

    @abrakadabra Jun 9, 2014

    Study this - #-Link-Snipped-#
  • maninellai

    maninellai

    @maninellai-ok1cac Jun 10, 2014

    Ankita Katdare
    Study this - #-Link-Snipped-#
    Thanks #-Link-Snipped-#. But it Shouldnt help ...
  • Manish Goyal

    Manish Goyal

    @manish-r2Hoep Jun 17, 2014

    Can you post complete code or just give me some link for animation you are looking for?