I use jQuery for animation along with CSS3 transition.
The problem is that I could not find the equivalent smoothing animation. Whether there is a?
The closest I got this (jQuery easeOutQuad and CSS3 by default).
CSS
#div1 { transition: width 0.5s; }
JQuery
$('#div2').animate({'width': 200}, 500, 'easeOutQuad');
http://jsfiddle.net/bzw4q/
But they are still different.
I want both to revive at the same time (using any good attenuation algorithm). Is it possible?
source share