我有一个jQuery循环的寻呼机,我想在活动类上轮换。
我已经设法了但是想知道是否有办法旋转到“+ 180deg”而不是“180deg”以使所有旋转看起来更独特。
是的,我已经尝试过+ 180deg。
答案 0 :(得分:3)
通过'旋转到'+ 180deg'我假设您想要将模拟360度的当前旋转增加180度?
由于您已经使用了jQuery,请尝试以下方法:
var self = $(this);
var currentRotation = self.css('rotate').match(/([-.\d]+)deg/)[1];
var newRotation = (parseInt(currentRotation, 10) + 180) % 360;
self.css('rotate', newRotation + 'deg');