-
笔记本查看全部
-
<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+16+"px"; if(This.offsetHeight>=120) clearInterval(This.time); },30) } } //鼠标离开菜单,二级菜单动画收缩起来。 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-16+"px"; if(This.offsetHeight<=0) clearInterval(This.time); },30) } } } } </script>查看全部
-
任务1:请补充完整代码,清除计时器 clearInterval(This.time); 任务2:请补充完整代码,设定计时器 This.time=setInterval(function() 任务3:请补充完整代码,a标签的宽度 if(This.offsetWidth>=160)查看全部
-
否则因为浮动使父元素ul会高度塌陷查看全部
-
.on,a:hover{color:#**;background—color:#**;height:40px;line-heigh:40;margin-top:-10px} line-heigh 40 让文字提升到40和背景居中 margin-top:-10px背景变大 变到40查看全部
-
gargin 可以负值,反向移动。查看全部
-
1.如果要给水平菜单增加整体背景,需要对()进行哪些CSS设置? 解析 菜单<li>浮动后,<li>脱离文档流,导致<ul>将失去高度和宽度;如果需要对<ul>进行整体背景设置,首先要给<ul>定义宽、高。查看全部
-
对象a中添加背景图片 background:url(图片地址) <li><a class="on"....> 默认首页交互式开的状态 对应要与.on,a:hover(color:#**,background-position:0-30)对于 background-position:0-30 背景横不变纵向向下30查看全部
-
ul{padding-left:30px}菜单右移动30 li{margin-top:20px}向下移动20查看全部
-
ul{border-bottom:5px solid#f60} 给导航菜单增加下划线 像素5 颜色#F60查看全部
-
设置背景改变外观样式 设置a:hover 增加菜单交互效果查看全部
-
li { float:left } 增加可以纵向改为横向 ul { list-style:none; width:100px } 后面的width需要删除 缩进删除 text-align:center 文本对齐方式(居中)查看全部
-
li { float:left } 增加可以纵向改为横向 ul { list-style:none; width:100px } 后面的width需要删除查看全部
-
dispaly:block 定义a标签为块 可以增加hover效果 background-color:#456;color:#44 可以设置颜色级 list-style:none 清楚u li列表的格式 前面小圆点查看全部
-
ul 单元的格式 a 文字格式 text-decoration:none (无下划线) li 文本格式 background-color 背景颜色 text-indent:10px 缩进10个像素查看全部
举报
0/150
提交
取消