問題が発生しました。
私はいじくり回しているスクリプトを持っています。すべて正常に実行されますが、jQuery1.4.4でのみ実行されます。バージョンを上げると、最新(1.7.2)のスクリプトが実行されないとしましょう。何ができるの?
var bouncespeed = 450;
function bounce(currentA) {
newx = Math.floor(10 * Math.random());
newy = Math.floor(3 * Math.random());
newspeed = bouncespeed + Math.floor(10 * Math.random());
$(currentA).animate({
backgroundPosition: newx + 'px ' + newy + 'px'
}, newspeed, 'linear', function() {
bounce(currentA);
});
}
$('.bubble').each(
function() {
$(this).css({
backgroundPosition: '5px 5px'
});
bounce(this);
});
再生時間!: http: //jsfiddle.net/mdecler/rgBeW/2/