不用js吧,在这讲还是挺有难度,直接修改触碰a标签时宽度增加20px以上效果一样的,简单好用.on,a:hover{background-color:#f60;color:#fff;margin-top:10px;width:120px}margin-top不一定用负值啊,根据自己设置ul、a的高度定的,我在a的css中设置的margin-top值+a的行高=ul行高就行了,然后触碰用正值就行了。同样添加触碰后增加a的宽度属性就行了。
2016-04-09
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].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)
}
a.on{background-color: #F60;color: #fff}
a:hover{ color:#fff;background-color:#F60;width:160px; }
其实用css也可以,原来a.on,a:hover那里的样式改成上面那样就行,不过伸缩的效果当然没有用jquery那么好看了
a:hover{ color:#fff;background-color:#F60;width:160px; }
其实用css也可以,原来a.on,a:hover那里的样式改成上面那样就行,不过伸缩的效果当然没有用jquery那么好看了
2016-04-07
background-position 属性设置背景图像的起始位置。
这个属性设置背景原图像(由 background-image 定义)的位置,背景图像如果要重复,将从这一点开始。
提示:您需要把 background-attachment 属性设置为 "fixed",才能保证该属性在 Firefox 和 Opera 中正常工作。
这个属性设置背景原图像(由 background-image 定义)的位置,背景图像如果要重复,将从这一点开始。
提示:您需要把 background-attachment 属性设置为 "fixed",才能保证该属性在 Firefox 和 Opera 中正常工作。