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

为什么我的毫无反应呢??半天都没找出来。

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>JS多物体运动动画</title>

<style type="text/css">

ul,li{

list-style:none;}

ul li{

width:200px;

height:100px;

background:yellow;

margin-bottom:20px;}

</style>

<script type="text/avascript">

 window.onload=function(){

var aLi=document.getElementsByTagName("li");//aLi为数组

for(var i=0;i<aLi.length;i++)

{

aLi.time=null;

aLi[i].onmouseover=function(){

startMove(this,400);

}

aLi[i].onmouseout=function(){

startMove(this,200);

}

}

 }

    aLi[i].timer=null;

function startMove(obj,terget){

clearInterval(obj.timer);

obj.timer=setInterval(function(){

var speed=(terget-obj.offsetWidth)/8;

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

if(obj.offsetWidth==terget){clearInterval(obj.timer);} 

else{obj.style.width=obj.offsetWidth+speed+"px";

},30)

 

}

</script>

</head>


<body>

 <ul>

   <li></li>

   <li></li>

   <li></li>

 </ul>

</body>

</html>


正在回答

1 回答

你好,其实只是一些小问题,

<script type="text/avascript">是javascript,这个应该影响不大,

aLi.time=null;aLi[i].timer=null;//应该是点的哪一个

function startMove(obj,terget){

clearInterval(obj.timer);

obj.timer=setInterval(function(){

var speed=(terget-obj.offsetWidth)/8;

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

if(obj.offsetWidth==terget){clearInterval(obj.timer);} 

else{obj.style.width=obj.offsetWidth+speed+"px";

},30)  //掉了一个'}',这是主要的

<!doctype html>


<html>


<head>


<meta charset="utf-8">


<title>JS多物体运动动画</title>


<style type="text/css">


ul,li{


list-style:none;}


ul li{


width:200px;


height:100px;


background:yellow;


margin-bottom:20px;}


</style>


<script type="text/javascript">


 window.onload=function(){


var aLi=document.getElementsByTagName("li");//aLi为数组


for(var i=0;i<aLi.length;i++){


aLi[i].timer=null;


aLi[i].onmouseover=function(){


startMove(this,400);


}


aLi[i].onmouseout=function(){


startMove(this,200);


}


}


 }




function startMove(obj,terget){


clearInterval(obj.timer);


obj.timer=setInterval(function(){


var speed=(terget-obj.offsetWidth)/8;


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


if(obj.offsetWidth==terget){clearInterval(obj.timer);}


else{obj.style.width=obj.offsetWidth+speed+"px";


}
},30)


 


}


</script>


</head>





<body>


 <ul>


   <li></li>


   <li></li>


   <li></li>


 </ul>


</body>


</html>

 


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

若忆浅搁 提问者

非常感谢!我把 j 补上去就可以了
2016-03-21 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

为什么我的毫无反应呢??半天都没找出来。

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