我不知道如何设置只能在悬停时旋转的 jquery 旋转功能。
这是我正在使用的代码:
$('div.settingsButton').hover(function() {
var angle = 0;
setInterval(function() {
angle += 4;
$(this).rotate(angle);
}, 50);
},
function() {
var angle = 0;
setInterval(function() {
angle = 0;
$(this).rotate(angle);
}, 50);
});
旋转是在这里找到的插件: http ://code.google.com/p/jqueryrotate/