我正在尝试为对象设置动画并同时旋转。我正在使用http://code.google.com/p/jqueryrotate/ 旋转转换不起作用。
$("#square")
.animate({top: "300px",left:"200px"},{duration:1800,queue: false})
.rotate({ angle:0,animateTo:-45,duration:1800 });
我想做的另一件事是延迟旋转:
$("#square")
.animate({top: "300px",left:"200px"},{duration:1800,queue: false})
.delay(500)
.rotate({ angle:0,animateTo:-45,duration:1800 });