我想創建一些jquery樣式的懸停淡入/淡出縮略圖。我已經設法在圖像上進行懸停,但是這是一個問題。當用戶懸停時,我想要一些文字出現,這是我用CSS實現的,問題在於,當用戶將文字懸停在文字上時,圖像逐漸淡入。我想知道如何才能讓它繼續呈現圖像保持淡出狀態,同時也徘徊在文本上。我不希望文字變淡,我只是嘗試在腳本部分切換到拇指類。jquery懸停淡出縮略圖
<script>
$(document).ready(function(){
$(".thumb img").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
$(".thumb img").hover(function(){
$(this).fadeTo("fast", 0.3); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
});
});
</script>
HTML
<div class="thumb">
<a href="#"><img src="images/hooty_thumb.png" width="250" height="224"/></a>
<div class="title">
<h1 class="din"><a href="#">TITLE HERE</a></h1>
<h2><a href="#">Branding, Print, Web</a></h2>
<h2><a href="#">2011</a></h2></div></div>
CSS:
.thumb {float: left; background-color: #FFF; z-index: 1; width: 250px; height: 225px; margin-right: 27px; margin-bottom: 45px; display: inline-block; *display:inline; *zoom: 1; position: relative;}
.thumb .title{position:absolute; width: 250px; top: 40%; left:0%; text-align: center; display: none; z-index: -1;}
.thumb:hover .title{display: inline; z-index: 1;}
.thumb .title h1{color:#00F;}
謝謝謝謝你謝謝! – Amy