jqueryサイクルのスライドショーに透明なpngがあります。ロールオーバーすると、イメージ A から B にフェードします。マウスアウトすると、A に戻ります。ただし、その後のロールオーバーでこのフェードを繰り返すことはありません。これについてのアイデアはありますか?ありがとう
<script type="text/javascript">
$(document).ready(function(){
$('#picroll').cycle({
timeout:.2,
delay: 0,
fx: 'fade',
continuous: false,
speed: 300,
autostop: 1
}).cycle("pause").hover(function() {
$(this).cycle('resume');
},function(){
$(this).cycle('pause');
$(this).cycle('resume');
})
.mouseleave(function(){
$(this).cycle(0, 'fade').cycle('play');
});
});
</script>
<div id="picroll"><a href="#"><img src="images/group/PictureA.png" width="114" height="330"/>
<img src="images/group/PictureB.png" width="114" height="330" /></div>