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

哪里不对啊,离开缩不回去了好奇怪

window.onload=function(){
                 odiv=document.getElementById("div1");
                 odiv.onmouseover=function(){
                     //move(10,0);
                     move(0);
                 }
                 odiv.onmouseout=function(){
                     //out();
                     //move(-10,-200);
                     move(-200);
                 }
             }
             var timer=null;
             function move(target){
                 clearInterval(timer);
                 odiv=document.getElementById("div1");
                 timer = setInterval(function(){
                     var speed=0;
                     if(odiv.offsetLeft>target){
                         speed = -10;
                     }else{
                         speed=10;
                     }
                     if(odiv.offsetLeft>=target){
                         clearInterval(timer);
                     }else{
                         odiv.style.left =odiv.offsetLeft + speed+"px"; //变大
                     }
                     
                 },500);
             }
            

正在回答

1 回答

当div完全显示的时候,odiv.offsetleft为0,想让它缩回去,你设target为-200,然而你判断条件是odiv.offsetLeft>=target,条件成立,执行  clearInterval(timer);,自然缩不回去。

1 回复 有任何疑惑可以回复我~
#1

慕仙5237505 提问者

非常感谢!谢谢,确实错那了厉害
2017-11-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

哪里不对啊,离开缩不回去了好奇怪

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