我试图在鼠标进入时将一个图像淡化到第二个,并在鼠标离开时反转。我想要的效果可以在http://mango.com找到他们的任何产品图片。这是下面的脚本。
<div id="fade">
<img src="two.gif" width="100" height="100" id="two1" class="after" style="display:none;"/>
<img src="one.gif" width="100" height="100" id="one1" class="before" />
</div>
<div id="fade">
<img src="two.gif" width="100" height="100" id="two2" class="after" style="display:none;" />
<img src="one.gif" width="100" height="100" id="one2" class="before" style="" />
</div>
<script type="text/javascript">
$('#one1,#one2').mouseenter(function(){
$(this).fadeOut(500);
$(this).prev('img').fadeIn(500);
});
$('#two1,#two2').mouseleave(function(){
$(this).fadeOut(500);
$(this).prev('img').fadeIn(500);
});
</script>
它会消失一次,但下一次两个图像都会消失。请任何人都可以发布代码或参考任何工作相同的代码/插件。