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

问一下哪里错了

<!DOCTYPE html>

<html>

<head>

<script  src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>

<meta charset="UTF-8">

<title>JS缓冲动画</title>

<style type="text/css">


body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,dl,dt,

dd,input{margin:0;padding:0;}

body{font-size:12px;}

img{border:none;}

li{list-style:none;}

input,select,textarea{outline:none;}

textarea{resize:none;}

#div1{

height: 200px;

width: 200px;

background-color: red;

position: relative;

left: -200px;

top: 0;

}


#div1 span{

background-color: blue;

width:20px;

height: 50px;

position: absolute;

left: 200px;

top: 75px;

}




</style>



<script type="text/javascript">

window.onload=function(){

var oDiv=document.getElementById('div1');

oDiv.onmouseover=function(){

startMove(0);

}

oDiv.onmouseout=function(){

startMove(-200);

}

}

var timer=null;

function startMove(iTarget) {

clearInterval(timer);

var oDiv=document.getElementById('div1');

var speed=(iTarget-oDiv.offsetLeft)/30;

speed = speed>0?Math.ceil(speed):Math.floor(speed);

timer=setInterval(function(){

if(oDiv.offsetLeft==iTarget){

clearInterval(timer);

}

else{


oDiv.style.left=oDiv.offsetLeft+speed+'px';


}

},30)

}




</script>  





</head>

<body>



<script type="text/javascript">




</script>


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

</body>

</html>


正在回答

3 回答

你把那些定义speed 的内容放在setInterval()里面试一试

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

ASDDSAFAS 提问者

我试了试可以,但不知道为什么,麻烦解释一下,谢谢
2017-07-06 回复 有任何疑惑可以回复我~

不定义里面怎么循环

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

定义在外面相当于一个值,定义在里面才能循环。

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

举报

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

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

进入课程

问一下哪里错了

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