jQuery does not support CSS3 animations. You need to either animate purely with CSS, or use jQuery to replace the CSS classes that cause the CSS animation effect, or quickly increase the built-in CSS3 animation property on the element (for example, how animation works in jQuery).
Eg.
var x=0, timer=1; //Change timer to change FPS setInterval(function() { x++; $('#myelement').css('-webkit-transform', 'scale(' + x + ')'); }, timer);
Jared
source share