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

我的为什么实现不了,感觉没有什么问题呀

<style type="text/css">

*{margin:0;padding:0;}

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 lis=document.getElementsByTagName("li");

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

//lis[i].timer=null;

lis[i].onmouseover=function(){

startMove(this,400);

}

lis[i].onmouseout=function(){

startMove(this,200);

}

}

}

function startMove(obj,target){

clearInterval(obj.timer);

obj.timer=setInterval(function(){

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

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

if(obj.offsetWidth==target){

clearInterval(timer);

}else{

obj.style.Width=obj.offsetWidth+speed+"px";

}

},30)

}

</script>

</head>


正在回答

3 回答

倒数第六行obj.style.Width=obj.offsetWidth+speed+"px";中前面Width大写了,改成小写即可

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

有可能是js的大括号没配对好,我的就是这样,你自己打开开发者工具看看出错在哪行就知道了    报错:Uncaught SyntaxError: Unexpected end of input

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

clearInterval(timer); timer改成obj.timer

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

慕粉baby 提问者

我加上也不行,放在li标签上没有反应
2016-05-26 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我的为什么实现不了,感觉没有什么问题呀

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