<script language="javascript" type="text/javascript" >
$(
function () {
$('li').mouseover(function () {
var $this = $(this);
$('#previewImage').animate({ opacity: 0.1 }, 0, function () {
$(this).attr("src", 'img/' + $this.attr('id') + '.jpg').animate({ opacity: 1 }, 1000);
});
// mouseout should come here and hover image should come back to normal while mouseout
});
});
</script>
親切に助けてください、ここに来て、マウスアウトイベントが発生している間、ホバー画像が通常に戻るはずです!!