我有一个图片链接,可以在悬停时淡化不透明度。我需要的是在它上面显示文本。这是我想要的一个示例:http: //kspla.tumblr.com/ 我下面的代码将不透明度淡化为 40%,但我不知道如何让文本显示在上面。
<script type="text/javascript">
$(document).ready(function() {
$('#wb_Image2, #wb_Image3 a img').animate({
opacity:1
});
$('#wb_Image2, #wb_Image3 a img').hover(function() {
$(this).stop().animate({opacity:.4},200);
}, function() {
$(this).stop().animate({opacity:1},500)
});
});
提前致谢。