我想這就是你想要的。每次你將鼠標懸停在圖像鏈接上時,都會顯示文字。您可能需要根據需要調整CSS。
Here是鏈接到您的答案。請檢查一下。
下面是爲那些想在這裏看到的代碼。
爲HTML代碼,您有以下(我將它縮短爲一排的整齊乾淨的答案):
<center>
<table id="wrapper" border="2" style="dotted">
<tr>
<td>
<a href="http://couponsoff.in/stores/snapdeal-coupon-codes"><img src="http://www.ohmygod.in/wp-content/uploads/2013/10/snapdeal.jpg" /></a>
<p class="text">This is a text</p>
</td>
<td>
<a href="http://couponsoff.in/stores/snapdeal-coupon-codes"><img src="http://www.ohmygod.in/wp-content/uploads/2013/10/snapdeal.jpg" /></a>
<p class="text">This is a text</p>
</td>
<td>
<a href="http://couponsoff.in/stores/myntra-coupon-codes/"><img src="http://www.ohmygod.in/wp-content/uploads/2013/10/myntra.jpg"/></a>
<p class="text">This is a text</p>
</td>
<td>
<a href="http://couponsoff.in/stores/jabong-coupon-codes"><img src="http://www.ohmygod.in/wp-content/uploads/2013/10/jabong.jpg"/></a>
<p class="text">This is a text</p>
</td>
</tr>
</table>
</center>
對於你的CSS,你有以下:
#wrapper .text {
position: relative;
background: rgba(0,0,0,.4);
text-align: center;
text-height: 0;
color: white;
font-size: 1em;
visibility: hidden;
}
#wrapper a:hover + .text {
visibility: visible;
}
編輯: 如果你想使用Jquery, 然後請看看this
你的文本在哪裏? – akash
有關您編寫的代碼問題的問題必須**描述具體問題** - 並且**包含有效代碼**以重現問題本身。請參閱[SSCCE.org](http://sscce.org/)獲取指導。 –
我想第一個鏈接只是一個例子,第二個鏈接是他/她的HTML標記,需要有CSS和懸停效果。 – iCezz