6

我正在寻找可以在固定 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 像素。

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

4

2 回答 2

8

这是一个具有您正在寻找的功能的 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;

}​

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

于 2012-12-08T05:11:11.433 回答
1

在它周围添加一个包装器元素并更新 jQuery 以限制尺寸。

<div id="wrap">
    <div class='a'></div>
</div>

​</p>

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

这是一个更新的小提琴:http: //jsfiddle.net/Xw29r/375/

于 2012-12-08T05:09:47.577 回答