*{padding: 0; margin: 0;font-size:16px;}
a{
text-decoration:none;
background-color:#cecece;
width:100px;
height:28px;
display:block;
text-align:center;
margin-bottom:2px;
padding-top:7px;
}
a:hover{
background-color:#cc9933;
color:#fdfdfd;
}
a{
text-decoration:none;
background-color:#cecece;
width:100px;
height:28px;
display:block;
text-align:center;
margin-bottom:2px;
padding-top:7px;
}
a:hover{
background-color:#cc9933;
color:#fdfdfd;
}
2017-03-17
不用定时器,用css3的新特性是不是更好
a{ transition:width linear .3s;}
.on,a:hover{ width:150px;}
as=document.getElementsByTagName('a');
for(var i=0;i<as.length;i++){as[i].onmouseover=function(){
for(var j=0;j<as.length;j++){as[j].className=''; }
this.className='on';
}
}
a{ transition:width linear .3s;}
.on,a:hover{ width:150px;}
as=document.getElementsByTagName('a');
for(var i=0;i<as.length;i++){as[i].onmouseover=function(){
for(var j=0;j<as.length;j++){as[j].className=''; }
this.className='on';
}
}
2017-03-16
基本的样式清除: *{margin:0;padding:0}
无序列表圆点去除: ul{list-style:none}
下划线去除: a{text-decoration:none}
文本缩进标签 text-indent 不会影响总体宽度(padding会)
需要将a标签设置为块元素,才能设高宽、hover效果 代码:a{display:block}
hover格式 a:hover{}
无序列表圆点去除: ul{list-style:none}
下划线去除: a{text-decoration:none}
文本缩进标签 text-indent 不会影响总体宽度(padding会)
需要将a标签设置为块元素,才能设高宽、hover效果 代码:a{display:block}
hover格式 a:hover{}
2017-03-10
a{text-decoration: none;display: block;height:30px;line-height: 30px;width:100px;
background-color:#ccc;margin-bottom: 1px;
text-align: center;
transition: width .5s;
}
a:hover{background-color: #f60;color:#fff; width: 150px;}
background-color:#ccc;margin-bottom: 1px;
text-align: center;
transition: width .5s;
}
a:hover{background-color: #f60;color:#fff; width: 150px;}
2017-03-06