jQueryを適用する必要のあるdiv-のセットがあります。
<div id="anim1" class="animation"></div>
<div id="anim2" class="animation"></div>
簡単そうに見えますが、もう少し柔軟にしたかったのです。それは不可能かもしれませんが......しかし、jQuery関数を何倍ものレイヤーにコピーして貼り付ける代わりに、マウスオーバーアクションからレイヤー名を取得して配置する方法があるのではないかと思いました。次のスクリプトで使用できる変数:
$(document).ready(function() {
$('.animation').mouseover(function() {
layer = '#'+this.id;
});
var steps = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, 1400, 1450, 1500, 1550, 1600, 1650, 1700, 1750, 1800, 1850, 1900, 1950, 2000, 2050, 2100, 2150, 2200, 2250, 2300, 2350, 2400, 2450, 2500, 2550, 2600, 2650, 2700, 2750, 2800, 2850, 2900, 2950,];
var index = -1;
setTimeout(function() {
index++;
if(index == 57) {
index = 0;
}
$(layer).hover(function(){
index ++;
}, function(){
index -=1;
});
$(layer).css('backgroundPosition', '-' + steps[index] + 'px 0px');
setTimeout(arguments.callee, 50);
}, 25);
});
私はここで何が間違っているのだろうと思っていました。どんな考えでも大歓迎です...
アップデート。$(document).ready(function()で変数を宣言しようとしました。この方法で実行できるかどうかはわかりませんが、少なくともアニメーションは現在動いています。唯一の問題は、両方が停止したときに停止することです。それらのいずれかにカーソルを合わせます。:
$(document).ready(function() {
layer = $('.animation').mouseover(function() {
'#'+this.id;
});