码迷,mamicode.com
首页 > Web开发 > 详细

缓冲运动-1-[解决1].html

时间:2014-10-21 17:45:09      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   java   sp   div   on   art   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        body{margin:0;padding:0;}
        div{width:100px;height:100px;background:red;position: absolute;left:0;}
        span{width:0;height:600px;position:fixed;left:600px;top:0;border-left:1px solid red;}
    </style>
</head>
<body>
<input type="button" value="buttons" onclick="startMove(600)"/>
<div></div>
<span></span>
</body>
</html>
<script type="text/javascript">
    var timer=null; //定时器需放在函数外面,避免每次调用都开启一个
    function startMove(iTarget)
    {
    var oDiv=document.getElementsByTagName("div")[0];
    clearInterval(timer);//移出所有的定时器,解决了每次点击都开启一个定时器的问题
    timer=setInterval(function(){
        var Speed=Math.ceil((iTarget-oDiv.offsetLeft)/10);//解决


        if(oDiv.offsetLeft>=iTarget){clearInterval(timer);} //已经到达,匀速运动if里面的条件必须为>=
       else{oDiv.style.left=oDiv.offsetLeft+Speed+"px"; document.title=oDiv.style.left;}//未到达
    },30)


    }
</script>

缓冲运动-1-[解决1].html

标签:style   io   os   ar   java   sp   div   on   art   

原文地址:http://blog.csdn.net/xiaomogg/article/details/40347711

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!