0

我正在尝试制作一个有趣的函数来旋转元素 360。问题是它只执行第一次,我不知道为什么!

jQuery.fn.circularFun = function() {
            this.stop().animate(
                {rotation: 360},
                {
                  duration: 500,
                  step: function(now, fx) {
                    $(this).css({"transform": "rotate("+now+"deg)"});
                  }
                }
            );
        }

谢谢!!

4

1 回答 1

3

第一次旋转后,它已经旋转到360。您需要0在完成后将其设置为。

于 2013-04-18T10:27:07.423 回答