ランダム/異なる方向に移動するために、異なる ID の div タグを作成しようとしています。どうすればそれを達成できますか? 以下は私のコードの一部です。親切なアドバイス。
すでにランダムな座標を割り当てていますが、まだ機能していませんか?
function runALl(item) {
var coordinates = Math.floor(Math.random()*101+1);
var cycle1;
//alert(item);
(cycle1 = function() {
var m = randomRange(coordinates,coordinates);
var n = randomRange(coordinates,coordinates);
item.animate({left:'+='+n},2000);
item.animate({left:'+='+m, top:'+='+m}, 2000);
item.animate({left:'-='+m, top:'+='+m}, 2000);
item.animate({left:'-='+n},2000);
item.animate({top:'-='+n},2000,cycle1)
})();
}