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

请问这段代码错在哪里

<!DOCTYPE html>

<html>

<head>

<title></title>

<meta charset="utf-8">

<style type="text/css">

*{margin: 0;padding: 0}

div{width: 200px;height: 200px;background: #345;margin-bottom: 20px}

</style>

<script type="text/javascript">

window.onload=function(){

var div1=document.getElementById('div1'),

div2=document.getElementById('div2');

div1.onmouseover=function(){

startMove(this,'width',400)

}

div1.onmouseover=function(){

startMove(this,'width',200)

}

div2.onmouseover=function(){

startMove(this,'height',400)

}

div2.onmouseover=function(){

startMove(this,'height',200)

}


}


function getClass(obj,attr){

if(obj.currenStyle){

return obj.currenStyle[attr]

}else{

return getComputedStyle(obj,false)[attr]

}

}


function startMove(obj,attr,iTarget){

clearInterval(obj.timer);

obj.timer=setInterval(function(){

var Attr=parseInt(getClass(obj,attr))

var speed=(iTarget-Attr)/10;

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

if(Attr==iTarget){

clearInterval(obj.timer);

}else{

obj.style[attr]=Attr+speed+'px'

}

},30)

}

</script>

</head>

<body>

<div id='div1'></div>

<div id='div2'></div>

</body>

</html>


正在回答

1 回答

onmouseout写成onmouseover了。

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

举报

0/150
提交
取消

请问这段代码错在哪里

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