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

javascript 运动缓冲效果

时间:2014-12-25 00:09:54      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<style>
#box{
    width:100px;
    height:100px;
    background:orange;
    position: absolute;
    left:0;
}
</style>
<body>


    <div id="box"></div>

    
</body>
</html>
<script>

var oBox = document.getElementById(box);
var num = 0 , speed;


oBox.onclick = function(){
    setInterval(function(){
        speed = Math.ceil( 0.1*(1000-num) );
        num = num + speed;
        oBox.style.left = num+px;
    },10);
}

</script>

 

javascript 运动缓冲效果

标签:

原文地址:http://www.cnblogs.com/zion0707/p/4183685.html

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