码迷,mamicode.com
首页 > 编程语言 > 详细

20150908 javascript实现来回滚动的小球

时间:2015-09-09 07:22:11      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>滚动的小球</title>
<style>
*{margin:0; padding:0}
#div1{ width:200px; height:200px; background:red; border-radius:100px; position:relative;}
</style>
<script>
window.onload=function(){
    var oDiv=document.getElementById("div1"),
        flag=0;
        oDiv.onmouseover=function(){
        if(flag==0){    
            startMove(1200);
            flag=1;
        }
        else{    
            startMove(0);
            flag=0;
        }
    }
}
var timer=null;
function startMove(target){
    clearInterval(timer);
    var oDiv=document.getElementById("div1");
    timer=setInterval(function(){
        var speed=(target-oDiv.offsetLeft)/30;
        speed=speed>0?Math.ceil(speed):Math.floor(speed);
        if(oDiv.offsetLeft==target){
            clearInterval(timer);
        }else{
            oDiv.style.left=oDiv.offsetLeft+speed+"px";
        }
    },5)
}
</script>
</head>
<body>
<div id="div1">
</div>
</body>
</html>

 

20150908 javascript实现来回滚动的小球

标签:

原文地址:http://www.cnblogs.com/mirror1988/p/4793502.html

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