为什么一定要用math.ceil向上取整才正确?

来源:3-1 JS缓冲动画

Zohar

2016-06-01 14:14


<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>缓冲动画效果</title>
   <style type="text/css">
#div1{
           width: 200px;
           height: 200px;
           position: absolute;
           top: 0px;
           left: -200px;
           background-color: #b10d1c;
       }
       #share{
           width: 30px;
           height: 50px;
           position: absolute;
           left: 200px;
           top: 75px;
           background-color: #3c6dcb;
           color: #ffffff;
           text-align: center;
           cursor: pointer;
       }
   </style>
   <script type="text/javascript">
window.onload=function () {
var odiv1=document.getElementById('div1'),
share=document.getElementById('share');
odiv1.onmouseover=function(){
startMove(10,0);
           }//最好使用匿名函数来调用函数
//            odiv1.onmouseout="startMove(10,0)";
odiv1.onmouseout=function(){
startMove(10,-200);
           }
var timer=null
           function startMove(speed,itarget) {
clearInterval(timer);
timer=setInterval(function () {
speed=(itarget-odiv1.offsetLeft)/10;
if(odiv1.offsetLeft==itarget){
clearInterval(timer)
                   }
else {
if(odiv1.offsetLeft>itarget){
speed=(odiv1.offsetLeft-itarget)/10;
//                            speed=speed>0?Math.ceil(speed):Math.floor(speed);
speed=Math.ceil(speed);
odiv1.style.left=odiv1.offsetLeft+(-speed)+'px';
                       }
else{
speed=(itarget-odiv1.offsetLeft)/10;
//                            speed=speed>0?Math.ceil(speed):Math.floor(speed);
speed=Math.ceil(speed);
odiv1.style.left=odiv1.offsetLeft+speed+'px';
                       }


                   }
               },30);
           }
       }

</script>
</head>
<body>
<div id="div1"><span id="share">分享</span> </div>
</body>
</html>



写回答 关注

1回答

  • 飞舞的墨
    2016-06-01 15:24:16
    已采纳

    如果(目标值-当前值)/10  不能整除的话。运动到最后,是1~9之间的数字来除以10,结果是个小于1的小数,如果向下取整,那就是0,speed=0,意味着不再发生变化。也就是说,如果用Math.floor(speed),最后不到10个像素的时候,就不会动了。

    飞舞的墨 回复小西瓜籽

    得到小数之后,小数再除小数,后面的数简直是没法说了。反正我用代码没找出一点规律,反而内存溢出了。

    2016-06-24 15:22:04

    共 3 条回复 >

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113925 学习 · 1443 问题

查看课程

相似问题