我具有显示幻灯片的功能
function slideSwitch() {
var $gallery = $('#slideshow'),
$active = $gallery.find('img:visible'),
$next = $active.next().length ? $active.next() : $gallery.find('img').first();
setTimeout(function() {
$active.fadeOut('100');
$next.fadeIn('1000', slideSwitch);
}, 2000);
};
我想删除循环,当它显示最后一张图像时,只需关闭div #slideshow
而不是再次转到第一张图像即可。