我正在尝试制作一个有趣的函数来旋转元素 360。问题是它只执行第一次,我不知道为什么!
jQuery.fn.circularFun = function() {
this.stop().animate(
{rotation: 360},
{
duration: 500,
step: function(now, fx) {
$(this).css({"transform": "rotate("+now+"deg)"});
}
}
);
}
谢谢!!