-
块:display:block 文本缩进:text-indent:20px查看全部
-
一般都使用 “ul\li” 来制作“菜单导航条”查看全部
-
<script> window.onload=function(){ var aLi=document.getElementsByTagName('li'); for(var i=0; i<aLi.length; i++){ aLi[i].onmouseover=function(){//鼠标经过一级菜单,二级菜单动画下拉显示出来 var oSubNav=this.getElementsByTagName('ul')[0]; if(oSubNav){ var This=oSubNav; clearInterval(This.time); This.time=setInterval(function(){ This.style.height=This.offsetHeight+10+"px"; if(This.offsetHeight>=120) clearInterval(This.time);},20)} }//鼠标离开菜单,二级菜单动画收缩起来。 aLi[i].onmouseout=function(){ var oSubNav=this.getElementsByTagName('ul')[0]; if(oSubNav){ var This=oSubNav; clearInterval(This.time); This.time=setInterval(function(){ This.style.height=This.offsetHeight-10+"px"; if(This.offsetHeight<=0) clearInterval(This.time);},20)}}}} </script>查看全部
-
可以直接设置background:橙色 , 然后border-top-left-radius:像素值 ;border-top-right-radius:像素值;查看全部
-
margin为-值向反方向移动查看全部
-
display:block 行元素强制转换为块级元素 a:hover 移动查看全部
-
text-indent文本向右移动px个单位 text-decoration 下划线none查看全部
-
找到二级标题并且注意闭包问题,只能用this不能用Subnav查看全部
-
记得清除计时器查看全部
-
text-indent:10px;文本缩进10像素查看全部
-
导航栏原来a高度是30px,当鼠标经过时,高度纵向上高出10px,并且字体保持居中,方法: a:hover{height:40px;margin-top:-10px;line-height:40px;} 使用margin的负值可实现向上移动查看全部
-
jquery伸缩菜单查看全部
-
I will be back查看全部
-
这里如何让文字垂直居中?可以修改line-height:40px查看全部
-
margin可以设置成负数查看全部
举报
0/150
提交
取消