-
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) }查看全部
-
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) }查看全部
-
1.如果要给水平菜单增加整体背景,需要对()进行哪些CSS设置? 解析: 菜单<li>浮动后,<li>脱离文档流,导致<ul>将失去高度和宽度;如果需要对<ul>进行整体背景设置,首先要给<ul>定义宽、高。查看全部
-
<a>元素加上display:block;后会变成块元素可以直接在上面定义宽高、背景等和div一样。 一般都使用 “ul\li” 来制作“菜单导航条”查看全部
-
增加一条橙色实线: boder-bottom:5px solid #f60;查看全部
-
text-decoration:none//CSS文字修饰为无,用于清除超链接的默认下划线 display:block//成块 text-indent锁进\查看全部
-
菜单<li>浮动后,<li>脱离文档流,导致<ul>将失去高度和宽度;如果需要对<ul>进行整体背景设置,首先要给<ul>定义宽、高。查看全部
-
这里使用一张背景图片的位移实现圆角的查看全部
-
1.jS(原生代码)实现:动画开始前先清除一下定时器,避免动画累加。 window.onload=function (){ var aA=document.getElementByTagName('a'); for(var i=0;i<aA.length;i++){ aA[i].onmouseover=function (){ clearInterval(This.time); var This=this; /*把当前的this对象传进来*/ This.time=setInterval(function (){ This.style.width=This.offsetWidth+8+"px"; /*8是变宽的速度*/ 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); } } }; 2.jQuery实现:动画打开时,先把上一个动画清理掉(使用stop方法)。 $(function(){ $('a').hover( function(){ $(this).stop().animate({"width":"160px"}.200); } function(){ $(this).stop().animate({"width":"120px"}.200); } )) })查看全部
-
onmouseover , 鼠标移过 ; onmouseout , 鼠标离开 ; setIntervel , 不停地调用函数 ; clearInterval , 取消 setInterval 函数的运行 ; this , 提取这个函数的值 ; offsetWidth , 元素内可见区域的宽度 + 元素边框宽度(如果有滚动条还要包括滚动条的宽度) ; clientWidth , 元素内可见区域的宽度 ; scrollWidth , 元素的全文宽度(如果有滚动条,那么这个宽度还包括滚动条能滚动到的所有区域) ;查看全部
-
要先清除缓存,不然会累加查看全部
-
border-radius查看全部
-
a:hover li:hover why234撑不起来?查看全部
-
<script> 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) } } } </script>查看全部
-
margin负值可以向相反方向移动查看全部
举报
0/150
提交
取消