JS继续使用随机参数移动元素

时间:2015-10-05 15:24:45

标签: javascript jquery move

Oke,所以我有一个包含6个对象的数组(img.wolk),我希望它们以随机的速度从左向右移动,完成

但我也希望当他们离开屏幕时,他们会移动到另一个网站并重新开始,无限期。

因此,当物体一直向左移动时,它会向右传送并继续向左移动。

function wolkMovement() {
console.log(wolkMovement);
var wolken = document.querySelectorAll('img.wolk');
var speed;
var randomOrder = ['-50%', '100%'];

for (var i = 0; i < wolken.length; i++) {

    var derection;
    derection= randomOrder[Math.floor(Math.random() * randomOrder.length)];
    speed= Math.floor(Math.random() * (100000 - 2000 + 1) + 2000);
    //random the derection and the speed

    $(wolken[i]).animate({
            left: derection
        }, speed, function () {
        //teleport to other site and repeat
    });
}
}

0 个答案:

没有答案