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

各位大神帮看看哪里有问题,找半天找不见!鼠标触碰滑块滑出

各位大神帮看看哪里有问题,找半天找不见!鼠标触碰滑块滑出

名字只是个代号丶 2016-08-02 19:25:45
<!doctype html> <html>  <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">   <title>滑出导航栏</title>   <style> body,div,span{     margin: 0;     padding: 0; } #div1{     width: 200px;     height: 200px;     background: red;     position: relative;     left:-200px;     top:200px; } #div1 span{         width: 20px;         height: 50px;         background: blue;         position: absolute;         left: 200px;         top:75px;     }   </style>     <script>     window.onload=function(){         var v=document.getELementById("div1");         v.onmouseover=function(){             star();         v.onmouseout=function(){             star1();         }             }     }         var timer=null;     function star(){         clearInterval(timer);         var v=document.getELementById("div1");         timer=setInterval(function(){             if(v.offsetLeft==0){                 clearInterval(timer);             }             else{                 v.style.left=v.offsetLeft+10+"px";             }         },30)     }     function star1(){         clearInterval(timer);         var v=document.getELementById("div1");         timer=setInterval(function(){             if(v.offsetLeft==-200){                 clearInterval(timer);             }             else{                 v.style.left=v.offsetLeft-10+"px";             }         },30)     } </script>     <body> <div id="div1"> <span id="share">分享</span> </div>   </body>   </html>
查看完整描述

1 回答

已采纳
?
回夢

TA贡献18条经验 获得超5个赞

取ID写错了。getElementById.你的E后面的L你大写了。

查看完整回答
反对 回复 2016-08-02
  • 1 回答
  • 0 关注
  • 1235 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信