Using CSS3 Animations in IE9+

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/

Leave a Comment