Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PolyFill/Shim for CSS transitions and animations

Google is failing me somewhat on this (I think because the terminology for PolyFill/Shim/Spackle is new and diverse at the moment). I'm trying to find a good JavaScript PolyFill or Shim for webkit's (and now as of the RC FireFox 4's) CSS transitions.

I have found this work that Weston Ruter did, but it hasn't been updated in a while, and uses browser detection as opposed to feature detection.

I also uncovered FakeSmile but it is geared mostly to SVG animation.

Does anyone know of any good libraries to fill in this functionality? Preferably something that would work with Modernizr and is still being actively worked on. So far the best option looks like starting with what Weston came up with.

like image 923
Graham Conzett Avatar asked Mar 17 '11 20:03

Graham Conzett


2 Answers

There is a very good CSS3 transition polyfill for jQuery called jQuery.transition.

You can just use the usual animate() method in jQuery, and it will automatically use CSS3 transitions if available, and if not, it will fall back to vanilla jQuery.

like image 118
Sindre Sorhus Avatar answered Sep 23 '22 00:09

Sindre Sorhus


Google's Polymer Project includes a Web Animations polyfill for the draft W3C Web Animations spec.

Caveat emptor: This is pretty early work, as the W3C spec is only a Public Working Draft, so anything could change. Also, the Polymer polyfills look like they're targeting only the latest version of browsers (e.g. IE10+) so it may not suit your needs. Still, this is early on in the project, so keep an eye on it and experiment.

If you're careful to test the platforms your users are on, you could take advantage of the future web today.

like image 21
Anson Avatar answered Sep 20 '22 00:09

Anson