怎么没效果呢?

来源:4-1 JS多物体动画

CHENG798479

2016-04-06 10:45

!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>


写回答 关注

1回答

  • Ayra
    2016-04-06 11:19:58
    已采纳

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

    CHENG7...

    非常感谢!

    2016-04-06 14:54:13

    共 1 条回复 >

JS动画效果

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

113925 学习 · 1443 问题

查看课程

相似问题