第一種方式利用兩張圖做切換
HTML代碼:
<a id="theLink"></a>
CSS代碼:
#theLink{
display:block;/*因為標簽a是內鏈元素,所以利用這句話將內鏈元素轉化成塊狀元素,后面的width和height才起作用*/
width:120px;
height:41px;
margin:0 auto;
background:url(../images/normal.gif) no-repeat;
}
#theLink:hover{background:url(../images/press.gif) no-repeat;}
第二種方式利用一張圖有有個圖樣時,調整圖的位置將HTML代碼:
<a id="buttonBlock"></a>
CSS代碼:
#theLink{
display:block;
width:120px;
height:41px;
margin:0 auto;
background:url(../images/buttonBG.gif) no-repeat;
}#theLink:hover{ background:url(../images/buttonBG.gif) no-repeat 0 -41px;}
沒有留言:
張貼留言