为了账号安全,请及时绑定邮箱和手机立即绑定

晕了晕了

        window.onload = function(){
            var box = document.getElementById('box1');
            box.onmouseover = function(){
                run(0);
            }
            box.onmouseout = function(){
                run(-100);
            }
        }
            var timer = null;
            function run(tar){
                clearInterval(timer);
                var box = document.getElementById('box1');
                timer = setInterval(function(){
                    var speed = (tar - box.offsetLeft) / 20;
                    speed = speed > 0 ? Math.ceil(speed):Math.floor(speed);
                    if(box.offsetLeft == tar){
                        clearInterval(timer);
                    }    else    {
                        box.style.left = box.offsetLeft + speed +'px';
                    }
                },30);
            }

为什么会在left:133px处停下

正在回答

1 回答

你是布局没布好,加上这句试试

	*{
		margin:0;
		padding:0;
	}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JS动画效果
  • 参与学习       113925    人
  • 解答问题       1443    个

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

进入课程

晕了晕了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信