2

我试图让一个元素在一个<div>

谢天谢地,有人找到了可以在这里找到的解决方案

但是,当我在本地机器或服务器上运行它时,元素不会移动。

这是我的源代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>

<style type="text/css">
div.a {
    width: 50px;
    height:50px;
    background-color:red;
    position:fixed;    
}​
</style>

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>
$(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;

}​
</script>
</head>

<body>
    <div class='a'></div>​
</body>
</html>
4

2 回答 2

5

在 Chrome 中打开,我收到一个错误:

Uncaught SyntaxError: Unexpected token ? 

看起来在 javascript 的大括号之后有一个不可见的字符。用记事本++打开并删除多余的字符。

当您直接从小提琴复制和粘贴时,我已经看到了这种情况。

于 2012-08-16T13:46:47.787 回答
1

对不起,我的英语不好

我有复制完整源代码的想法

脚步

  1. 点击分享按钮

  2. 复制2框上的链接分享全屏结果

  3. 然后去那个链接(复制链接)。它显示了结果

  4. 然后右键单击,单击视图框架源。

现在你的源代码显示

然后放上脚本src和css的确切链接。

现在你的代码工作

于 2013-05-08T13:34:40.610 回答