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

怎么没效果呢?

!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style type="text/css">

*{

margin: 0;

padding: 0;

}

ul{

list-style: none;

}

ul li{

width:200px;

height:100px;

background: #F33;

margin-bottom: 20px; 

}

</style>

<script type="text/javascript">

window.onload=function(){

var an=document.getElementsByTagName("li");

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

an[i].timer=null;

   an[i].onmouseover=function(){

   sart2(this,400);

   }

   an[i].onmouseout=function(){

start2(this,200);

   }

   }

}

//var timer=null;

function start2(sh,target){

clearInterval(sh.timer);

sh.timer=setInterval(function(){

var speed=(target-sh.offsetWidth)/8;

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

if(sh.offsetWidth==target){

clearInterval(sh.timer);

}

else{

sh.style.width=sh.offsetWidth+speed+'px';

}

},30)

}

</script>

</head>

<body>

<ul>

<li><a href="#"></a></li>

        <li><a href="#"></a></li>

        <li><a href="#"></a></li>

</ul>

</body>

</html>


正在回答

2 回答

27行sart2(this,400);中 sart2没有定义 你写错单词了 应该是 start2

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

CHENG798479 提问者

非常感谢!
2016-04-06 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

怎么没效果呢?

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