Salve, grazie al plugin jQueryRotate posso ruotare delle img, ma vorrei sapere come mai questo codice non si esegue del tutto:
$("#img").rotate({animateTo:30}, function() {
$(this).rotate({animateTo:0});
});
l'immagine ruota di 30 al primo passaggio ma poi non...
Salve a tutti, io ho questo codice:
var angle = 0;
var timer = setInterval(function(){
angle+=3;
$("#timone").rotate(angle);
},50);
$('#timone').hover(function(){
clearInterval(timer);
})...