jQuery plugin to convert fadeTo, fadeOut,.. functions to CSS3
Hi is there any jquery extension capable of converting standard animations like fadeOut to CSS3 animations..? CSS3 is much more quicker but is not widely supported.. I have found only some plugins with those functionality but unfortunately only开发者_高级运维 for $.animate functions..
Thanks
You should use CSS3 transition and, only if browser doesn't support it, use javascript fallbacks. look at this example.
Take look at this plugin. Sound's like what you're looking for but the number of properties animated with css is rather low.
I would imagine that future releases of jQuery will use CSS3 animations if possible, and fall back to non-CSS3 animations where it is not supported. I cannot confirm this though.
There is some discussion on the jQuery site.
精彩评论