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

为什么结果没出来,都没有反应

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>JS动画2</title>
<style type="text/css">
*{margin: 0;
 padding: 0;
 }
#share{
    width: 200px;
    height: 200px;
    background-color:#11FA45 ;
    position: relative;
    left: -200px;
}
#share span{
    width: 60px;
    height: 50px;
    line-height: 50px;
    background-color: #F36812;
    position: absolute;
    text-align: center;
    top:100px;
    right: -60px;
}
</style>
</head>
<body>
    <div id="share">
        <span>分享</span>
    </div>


<script type="text/javascript">
    window.onload=function(){
    var move=document.getElementById("share");
    move.onmouseover=function(){
        startmove();
    }
}
 var timer=null;
function startmove(){
    clearInterval(timer);
    var move=document.getElementById("share");
    timer=setInterval(function(){
        if (move.offsetLeft>=0) {
             clearInterval(timer);
         } else{
            move.style.left=move.offsetLeft+10+'px';}
         },30)
        }
        
</body>
</script>
</html>

正在回答

4 回答

</body>
</script>这块写错了,应该是

</script>

</body>

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

周木杉 提问者

改过来了还是没有反应
2015-12-16 回复 有任何疑惑可以回复我~
#2

周木杉 提问者

非常感谢!
2015-12-16 回复 有任何疑惑可以回复我~

将</body>和</script>两个标签互换就可以了


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

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>JS动画2</title>
<style type="text/css">
*{margin: 0;
 padding: 0;
 }
#share{
    width: 200px;
    height: 200px;
    background-color:#11FA45 ;
    position: relative;
    left: -200px;
}
#share span{
    width: 60px;
    height: 50px;
    line-height: 50px;
    background-color: #F36812;
    position: absolute;
    text-align: center;
    top:100px;
    right: -60px;
}
</style>
</head>
<body>
    <div id="share">
        <span>分享</span>
    </div>


<script type="text/javascript">
    window.onload=function(){
    var move=document.getElementById("share");
    move.onmouseover=function(){
        startmove();
    }
    move.onmouseout=function(){
        startmout();
    }
}
 var timer=null;
function startmove(){
    clearInterval(timer);
    var move=document.getElementById("share");
    timer=setInterval(function(){
        if (move.offsetLeft>=0) {
             clearInterval(timer);
         } else{
            move.style.left=move.offsetLeft+10+'px';}
         },30)
        }
 </script>       
</body>

</html>

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

你的body的问题,把结束标签提出去

<body>
<div id="share">
   <span>分享</span>
</div>

</body>

<script type="text/javascript">
   window.onload=function(){
      var move=document.getElementById("share");
      move.onmouseover=function(){
         startmove();
      }
   }
   var timer=null;
   function startmove(){
      clearInterval(timer);
      var move=document.getElementById("share");
      timer=setInterval(function(){
         if (move.offsetLeft>=0) {
            clearInterval(timer);
         } else{
            move.style.left=move.offsetLeft+10+'px';}
      },30)
   }
</script>


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

举报

0/150
提交
取消

为什么结果没出来,都没有反应

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