gpt4 book ai didi

jquery - 固定容器中的随机移动

转载 作者:太空狗 更新时间:2023-10-29 15:41:55 25 4
gpt4 key购买 nike

我正在寻找可以在固定的 div 容器内随机移动的东西。我喜欢这个例子中对象移动的方式,我在搜索这个网站时发现...

http://jsfiddle.net/Xw29r/15/

jsfiddle 上的代码包含以下内容:

$(document).ready(function(){
animateDiv();

});

function makeNewPosition(){

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

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

return [nh,nw];

}

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

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

};

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 = 0.1;

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

return speed;

}​

CSS:

div.a {
width: 50px;
height:50px;
background-color:red;
position:fixed;
}​

但是,我认为上面的代码根本不会限制该对象。我需要我的对象在容器内随机移动,我们现在假设...宽度为 1200 像素,高度为 500 像素。

有人可以引导我朝着正确的方向前进吗?我对编码非常陌生,所以我很难自己找到答案。

最佳答案

这是一个具有您正在寻找的功能的 jsfiddle:http://jsfiddle.net/2TUFF/

JavaScript:

$(document).ready(function() {
animateDiv();

});

function makeNewPosition($container) {

// Get viewport dimensions (remove the dimension of the div)
$container = ($container || $(window))
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() {
var $target = $('.a');
var newq = makeNewPosition($target.parent());
var oldq = $target.offset();
var speed = calcSpeed([oldq.top, oldq.left], newq);

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

};

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 = 0.1;

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

return speed;

}​

HTML:

<div id="container">
<div class='a'></div>
</div>​

CSS:

div#container {height:100px;width:100px;}

div.a {
width: 50px;
height:50px;
background-color:red;
position:fixed;

}​

这将允许您创建一个具有任何高度/宽度的包装元素,并让 float 元素保持在其容器的区域内。

关于jquery - 固定容器中的随机移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13774659/

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