How to disable css Animation keyframes in opera?

andreyletov

New Member
I have created an animation using css3 "transform" and "animation" features. Now I want to disable the animation from displaying on opera. When I remove the opera specific code(@-o-keyframes leftright { 0% { left: -10%; } 100%{ left: 101%;}}) from the css the animation doesn't disable itself on opera. But when I remove the default animation code (@keyframes leftright { 0% { left: -10%; }100%{ left: 101%;}}) it does disable itself on opera. I want to disable it on opera without removing the default code.\[code\]This is the code@keyframes leftright { 0% { left: -10%; }100%{ left: 101%;}}@-moz-keyframes leftright { 0% { left: -10%; } 100%{ left: 101%;}}@-webkit-keyframes leftright { 0% { left: -10%; } 100%{ left: 101%}}@-o-keyframes leftright { 0% { left: -10%; } 100%{ left: 101%;}} \[/code\]is there a way to get this thing done?
 
Back
Top