我喜歡它,所以當我將鼠標懸停在圖像上時,整個圖像變成鏈接而不僅僅是內部文本。有人可以幫我弄這個嗎?懸停時圖像淡入並使圖像可點擊
使用Javascript:
$('.thumbnail').hover(function() {
$('.thumbnail img').stop(true,true).fadeTo(400, 0.2);
$('.description').stop(true,true).fadeIn(400);
}, function() {
$('.thumbnail img').stop(true,true).fadeTo(400, 1);
$('.description').stop(true,true).fadeOut(400);
});
這裏是的jsfiddle:http://jsfiddle.net/LDs6C/15/
啊 - 簡單!只需將'a'設爲塊元素即可。 :) 謝謝! – J82 2011-02-16 23:14:14