我需要使用 jQuery 淡化 div(和图像)以显示下面的 div(带有可点击链接的文本)。
<script>
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
</script>
使用上面的代码并且一切正常,直到我去点击链接。似乎顶部隐藏的 div 阻止我这样做。
尝试了 replaceWith 功能,它也允许我单击链接 - 但是当我鼠标移出时无法让它返回显示原始 div。此外,老板希望过渡是渐进的 - 就像褪色......
有什么建议么?
非常感谢!
希思