私は、このスクリプトで画像をクリックすると無限に回転し、もう一度クリックすると停止する方法を見つけようとしています。誰でもそれを変更してそれを行うことができますか?
$(function() {
var $rota = $('.spin'),
degree = 0,
timer;
function rotate() {
$rota.css({ transform: 'rotate(' + degree + 'deg)'});
// timeout increase degrees:
timer = setTimeout(function() {
++degree;
rotate(); // loop it
},5);
}
rotate(); // run it!
});