-
text-indent,文本缩进; 制作垂直菜单,<ul><li><a>,将a标签设为块状元素,将li的样式直接加给a;查看全部
-
菜单<li>浮动后,<li>脱离文档流,导致<ul>将失去高度和宽度;如果需要对<ul>进行整体背景设置,首先要给<ul>定义宽、高。查看全部
-
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) } } }查看全部
-
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); } )) })查看全部
-
float:left让垂直菜单水平浮动显示查看全部
-
文本水平对齐 text-align:center 文字的垂直居中,把line-height的值设置为height的值一样就行查看全部
-
css 设置查看全部
-
1.鼠标经过一级菜单,二级菜单动画下拉显示出来; 2.鼠标离开菜单,二级菜单动画收缩起来。查看全部
-
width 属于css样式 需要style来调用 offsetWidth可以直接设置他的值 例如: div.style.width div.offsetWidth 任务 任务1:请补充完整代码,清除计时器 任务2:请补充完整代码,设定计时器 任务3:请补充完整代码,a标签的宽度查看全部
-
1.设置margin-top负值,而不是直接设置margin-bottom,是因为相对初始位置不变。【通用】 2.设置line-height,是因为之前的文字height为30px,现在容器height为40px,文字height没变,默认靠上,为了使文字居中改变行高。【特殊】查看全部
-
background-position:0 -30px 设置背景图片位置,参数值为X,Y查看全部
-
任务1:请补充完整代码,把li标签进行浮动,让菜单水平显示,如下图所示:查看全部
-
list-style:none表示去掉无序列表<li>标签前的圆点; 基本的样式清除: *{margin:0;padding:0} 下划线去除: a{text-decoration:none} 文本缩进:text-indent 把<a>标签 display:block 变成块标签,去掉了下划线,然后li的样式设置可以直接给<a> a:hover{background:green;color:white}表示鼠标移在a标签的时候、背景色变为绿色、文字变为白色查看全部
-
width 属于css样式 需要style来调用 offsetWidth可以直接设置他的值 例如: div.style.width div.offsetWidth查看全部
-
1.设置margin-top负值,而不是直接设置margin-bottom,是因为相对初始位置不变。【通用】 2.设置line-height,是因为之前的文字height为30px,现在容器height为40px,文字height没变,默认靠上,为了使文字居中改变行高。【特殊】查看全部
举报
0/150
提交
取消