I'm trying to animate an object and rotate simultaneosly. I'm using http://code.google.com/p/jqueryrotate/ The rotate transition doesn't work.
$("#square")
.animate({top: "300px",left:"200px"},{duration:1800,queue: false})
.rotate({ angle:0,animateTo:-45,duration:1800 });
Another thing I would like to do is rotating with delay:
$("#square")
.animate({top: "300px",left:"200px"},{duration:1800,queue: false})
.delay(500)
.rotate({ angle:0,animateTo:-45,duration:1800 });