已采纳回答 / qq_A米豆腐_0
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.offsetW...
2016-08-23
已采纳回答 / 徐大亮
a{display:block; height:30px;text-align:center; line-height:30px; width:120px; ); margin-left:1px;border-radius: 15px 15px 0 0;background-color:silver; }a:hover{background:orange;}我没用背景图,用的圆角属性
2016-08-19
最赞回答 / 慕粉1462636306
我来帮找茬,哈哈,更改了三处后360浏览器和firefox都可以运行啦(1)var aLi=document.getElementsByTagName("li"),Name和TagName定义是不一样的,一个是元素名称,一个是标签名称;(2) aUl.style.overflow="visible"; 单词写错了哈哈哈
2016-08-14
已采纳回答 / 慕粉3880652
setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。每30毫秒就调用一次function函数,增加一个8px,直到增加至160px,clearInterval清一下this.time
2016-08-09
最赞回答 / 南埝陈陈
.nav li a{display:block; height:30px;text-align:center;
line-height:30px; width:120px;
background:url(http://img1.sycdn.imooc.com//53846438000168f901200060.jpg) no-repeat ;
margin-left:1px;}你试着加上"no-repeat",就会发现只有-30px可以,30px就没背景了。
2016-08-06