gpt4 book ai didi

javascript - 在页面加载时随机定位 div

转载 作者:太空宇宙 更新时间:2023-11-04 10:51:11 25 4
gpt4 key购买 nike

我想要一组 div 在页面加载时随机定位。 div 当前设置为以随机方式在视口(viewport)中移动,但似乎都加载到左上角。

我目前的方法:( https://jsfiddle.net/j2PAb/634/ )

$(document).ready(function() {
animateDiv($('.a'));
animateDiv($('.b'));
animateDiv($('.c'));});

function makeNewPosition($container) {

// Get viewport dimensions (remove the dimension of the div)
var h = $container.height() - 50;
var w = $container.width() - 50;

var nh = Math.floor(Math.random() * h);
var nw = Math.floor(Math.random() * w);

return [nh, nw];}


function animateDiv($target) {
var newq = makeNewPosition($target.parent());
var oldq = $target.offset();
var speed = calcSpeed([oldq.top, oldq.left], newq);

$target.animate({
top: newq[0],
left: newq[1]
}, speed, function() {
animateDiv($target);
});

};

function calcSpeed(prev, next) {

var x = Math.abs(prev[1] - next[1]);
var y = Math.abs(prev[0] - next[0]);

var greatest = x > y ? x : y;

var speedModifier = .1;

var speed = Math.ceil(greatest / speedModifier);

return speed;}

最佳答案

只需定义它们的初始topleft 位置,如this

div.a {
width: 50px;
height:50px;
background-color:red;
position:fixed;
top: 300px;
left:10px;
}
div.b {
width: 50px;
height:50px;
background-color:blue;
position:fixed;
top: 100px;
left:50px;
}
div.c {
width: 50px;
height:50px;
background-color:green;
position:fixed;
top: 150px;
left:200px;

}

关于javascript - 在页面加载时随机定位 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34986733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com