Using CSS3 Animations in IE9+

浪子不回头ぞ 提交于 2019-11-26 08:19:11

问题


I have been trying to get these css3 animations to work in IE9 for a few hours today and I am stumped!

I tried implementing a few JavaScript fallbacks but my knowledge is very limited so they failed. I am unsure if it was failing due to my user errors or code errors.

Here is a jsFiddle of my code so far, I have replaced the background images with colours. Basically the green and black squares rotate in Firefox and Webkit browsers.

http://jsfiddle.net/fJxsV/

I want to have it running on IE9 also.

If you can please help me with this I would be very grateful!


回答1:


I would use Modernizr to detect when css animations are not supported. With Modernizr, it's as simple as:

if(!Modernizr.cssanimations) {
    //jQuery fallback 
}

As for rotating with jQuery I would use: http://jqueryrotate.com/



来源:https://stackoverflow.com/questions/9060223/using-css3-animations-in-ie9

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!