固定容器中的随机移动
Posted
技术标签:
【中文标题】固定容器中的随机移动【英文标题】:Random Movement in a Fixed Container 【发布时间】:2012-11-26 07:32:49 【问题描述】:我正在寻找可以在固定 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 像素。
有人可以引导我朝着正确的方向前进吗?我对编码非常陌生,所以我很难自己找到答案。
【问题讨论】:
【参考方案1】:这里是一个 jsfiddle 与您正在寻找的功能:http://jsfiddle.net/2TUFF/
$(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;
这将允许您创建具有任意高度/宽度的包装元素,并使浮动元素保持在其容器区域内。
【讨论】:
谢谢!这正是我所需要的,因为它可以很容易地扩展为 multiple divisions move randomly at once。【参考方案2】:在其周围添加一个包装器元素并更新 jQuery 以限制尺寸。
<div id="wrap">
<div class='a'></div>
</div>
// Get viewport dimensions (remove the dimension of the div)
var h = $('#wrap').height() - 50;
var w = $('#wrap').width() - 50;
这是一个更新的小提琴:http://jsfiddle.net/Xw29r/375/
【讨论】:
谢谢。我不知道为什么,但是当我将这些确切的代码插入 Dreamweaver 并预览它时,红色框根本没有动画。以上是关于固定容器中的随机移动的主要内容,如果未能解决你的问题,请参考以下文章
pygtk Child Label 在移动时调整固定容器的大小
没有固定大小的容器中的垂直和水平居中文本在 Firefox 中表现得很奇怪