▼ ブックマークレット登録用リンクです。( クリックするとこのページが回転します )
jQueryチェック

そのページで jQuery が使用されているかをチェック

🍒 実行すると jQuery の anmation メソッドでページが回転します。

.animate()

duration : 動作時間( ミリ秒 )
easing : アニメーション効果(速度等)のタイプ
step : ここでは 0 から 360 までが定期的に実行される

01.jQuery({ kakudo: 0 }).animate({ kakudo: 360 },
02.{
03.        duration: 3000,
04.        easing: 'swing',
05.        step: function(now) {
06.                jQuery(document.body).css({
07.                        transform: 'rotate(' + now + 'deg)'
08.                });
09.        }
10.});
リアルタイム実行