このコードを使用して、ページ上の画像を循環するページがあります。
$('#summaryContainer img:gt(0)').hide();
setInterval(function(){
$('#summaryContainer :first-child').fadeOut(summary.speed)
.next('img').fadeIn(summary.speed)
.end().appendTo('#summaryContainer');},
summary.pause);
正常に動作します...ページを離れて戻ってくるまで。次に、サイクルが始まる前に最後の画像を点滅させてから、最初の画像に移動します。何が原因なのですか?