我有这个代码,我从其中一个堆栈溢出答案得到的,我用它来点击事件中的元素动画:
$(this).animate({ borderSpacing: -180 }, {
step: function (now, fx) {
$(this).css('-webkit-transform', 'rotate(' + now + 'deg)');
$(this).css('-moz-transform', 'rotate(' + now + 'deg)');
$(this).css('transform', 'rotate(' + now + 'deg)');
},
duration: 'fast'
}, 'linear')
它完美地工作,但逆时针旋转元件。无论如何我可以在相反的方向旋转元素。当我将边框间距值更改为正值时,它仅首次旋转,之后再也不会旋转。到处寻找答案。