我遇到了一个问题。
我有一个正在修改的脚本。一切运行良好,但仅在 jQuery 1.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/