Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Looking for the same thing... Nothing on Modernizr polyfills list (yet?). – saadtazi Apr 6 '11 at 1:38
Perhaps you could clarify the question somewhat. What have you tried so far? What functionality are you looking for? In what ways do the existing solutions not meet your needs? – KatieK Apr 7 '11 at 18:30
Please consider accepting the answer. – Sindre Sorhus Jan 28 at 10:47

1 Answer

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.

share|improve this answer
7  
This is kind of backward from what the OP is looking for, but +1 anyway, since in many cases you do want this functionality in JavaScript instead of CSS. (There are definitely cases where CSS is more appropriate though, e.g. transitioning between normal and :hover states.) – Domenic Apr 10 '11 at 1:01
2  
I know, but the best polyfill is actually this way. The other way is by loading and parsing the stylesheet, and extracting the transition parameters and converting them to JavaScript. Something that is quite resource hungry. – Sindre Sorhus Apr 10 '11 at 1:11
1  
Thank you for pointing me to this polyfill - I had been struggling with other buggy plugins that gave me nothing but grief. This one works beautifully. – Oskar Austegard Dec 3 '11 at 0:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.