懸停時,我想要圖像右上方的鏈接apear。就像在Facebook上的個人資料圖片上,它說「更改圖片」。懸停圖像 - 在其上顯示div
我試圖讓它有點jquery的工作,但沒有運氣,因爲它不去圖像的權利。這些圖像將會是不同的尺寸,因爲它們是個人資料圖片。所以無論大小如何,都需要停留在圖片的右上角。
JQuery的:
$(".imgHover").hover(function() {
$(this).children("img").fadeTo(200, 0.25)
.end().children(".hover").show();
}, function() {
$(this).children("img").fadeTo(200, 1)
.end().children(".hover").hide();
});
HTML:
<div class="imgHover">
<div class="hover"><a href="htpp://google.com">Edit</a></div>
<img src="http://img14.imageshack.us/img14/9698/29588166.jpg" alt="" />
</div>
CSS:
.imgHover .hover {
display: none;
position:absolute;
z-index: 2;
}
謝謝!
是你想要它在右上角還是在它旁邊? – 2010-11-29 18:34:06