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

为什么我的不能实现伸缩呢?(新闻菜单)

<style>
    *{margin:0;padding:0;text-decoration:none;}
    ul{list-style:none;border-bottom:2px red solid;height:50px;}
    .first{width:500px;margin:0 auto;}
    li{float:left;margin-left:2px;margin-top:30px;}
    a{background:#ccc;}
    .on,a:hover{color:white;background:red;height:50px;}
   </style>

我这个怎么不能实现伸缩呢?请大神们帮忙看看

正在回答

1 回答

window.onload=function(){    var aA=document.getElementsByTagName('a');	for(var i=0; i<aA.length; i++){		aA[i].onmouseover=function(){			var This=this;			clearInterval(This.time);			This.time=setInterval(function(){					This.style.width=This.offsetWidth+8+"px";					if(This.offsetWidth>=160)					clearInterval(This.time);				},30)		}		aA[i].onmouseout=function(){				clearInterval(this.time);				var This=this;				this.time=setInterval(function(){					This.style.width=This.offsetWidth-8+"px";					if(This.offsetWidth<=120){						This.style.width='120px';						clearInterval(This.time);					}				},30)		}	}}

伸缩效果是靠js代码实现的

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

慕前端0798377 提问者

非常感谢!
2018-08-13 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
导航条菜单的制作
  • 参与学习       123899    人
  • 解答问题       813    个

水平、垂直、圆角导航条菜单,让您的技术探索之路更高效

进入课程

为什么我的不能实现伸缩呢?(新闻菜单)

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