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

滑动无反应,代码上没找到啥问题,请指点

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
<title>777666</title>
<style>
*{margin:0;padding: 0;}
li{
width: 200px;
height: 100px;
background: #834;
margin-bottom: 15px;
list-style: none;
}

</style>
<script>
window.onload=function(){
var ali = document.getElementsByName('li');
for(var i=0;i<ali.length;i++){
ali[i].onmouseover=function(){
moves(this,400);
}
ali[i].onmouseout=function(){
moves(this,200);
}
}
}
var mytime;
function moves(obj,tar){
clearInterval(mytime);
mytime=setInterval(function(){
var speed=(tar-obj.offsetWidth)/10;
speed=speed>0?Math.ceil(speed):Math.floor(speed);
if(obj.offsetWidth==tar){
clearInterval(mytime);
}else{
obj.style.width=obj.offsetWidth+speed+'px';
}
},30)

}

</script>

</head>
<body>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>


正在回答

1 回答

终于找到毛病了。。。。。心不够细啊,仅此为戒吧

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

慕虎0419316

问题在哪。。
2017-03-09 回复 有任何疑惑可以回复我~
#2

qq_等风来_55 回复 慕虎0419316

getElementByTagName 它写错了
2017-06-08 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

滑动无反应,代码上没找到啥问题,请指点

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