為什么鼠標(biāo)移出的運(yùn)動(dòng)不對(duì)啊
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>練習(xí)</title>
<style type="text/css" media="screen">
? ? ? ?*{padding:0;margin:0;}
? ? ul{list-style: none;margin-left: 20px;}
? ? li{float: left;}
? ? a{text-decoration:none;height:40px;width:100px;background-color: #ccc;display:block;text-align: center;line-height: 40px;margin-bottom: 15px;}
? ? a:hover{background-color: #ecc;color: #fff;
? ? }
</style>
<script type="text/javascript">
? ? window.onload=function(){
? var aA=document.getElementsByTagName('a');
? for(var i=0;i<aA.length;i++)
? {
? ? ? aA[i].onmouseover=function(){
? ? ? ? ? var This=this;
? ? ? ? ? This.time=setInterval(function(){
? ? ? ? ? This.style.width=This.offsetWidth+8+"px";
? ? ? ? ? if(This.offetWidth>=130){
? ? ? ? ? ? clearInterval(This.time);
? ? ? ? ? } ? ??
? ? ? ? ? },30);?
? ? ? ? ??
? ? ? }
? ? ? ?aA[i].onmouseout=function(){
? ? ? ? ? var This=this;
? ? ? ? ? This.time=setInterval(function(){
? ? ? ? ? This.style.width=This.offsetWidth-8+"px";?
? ? ? ? ? if(This.offetWidth<=100){
? ? ? ? ? ? This.style.width="100px";
? ? ? ? ? ? clearInterval(This.time);
? ? ? ? ? } ? ??
? ? ? ? ? },30);?
? ? ? ? ?
? ? ? }
? ? ? ? ?
? }
}
? ?
? ?
</script>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<body>
? ?<ul>
? ? ? ? <li><a href="" title="">首頁(yè)</a></li>
? ? ? ? ?<li><a href="" title="">資訊</a></li>
? ? ? ? ? <li><a href="" title="">新聞</a></li>
? ? ? ? ? ?<li><a href="" title="">產(chǎn)品展示</a></li>
? ? </ul>?
</body>
</html>
2016-10-15
沒(méi)有暫停