一般我們做按鈕基本上都需要兩張圖片,一張正常狀態的圖片,一張按下去效果圖片
做這種按鈕思路就是,設置鏈接a的背景為第一張圖片,a:hover的背景為第二章圖片
代碼如下:
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;}
源代碼:兩張圖片按鈕的源代碼.rar (5.2 KB)
=========================================================
這節課,主要給大家介紹第二種思路,其實也很簡單,首先我們將上面的兩個圖片合並成一張圖片,如下
其次,將上面的圖片設置成按鈕的背景
最後,將a:hover的背景向上移動41個像素就OK了
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;}
可能我講到這裡,你不能完全理解,沒關系
下載下來源代碼,保你一看就明白源代碼:單張圖片按鈕的源代碼.rar (4.48 KB)