フルバックグラウンドスライダーを作成しましたが、メニュー項目をクリックすると、スライダーが何度も起動します。メニュー項目をクリックすると(別のページに)、スライダーがスライドし続ける可能性はありますか?
これがスライダーの私のコードです:
function slideSwitch() {
var $active = $('#slideshow img.active');
if ( $active.length == 0 ) $active = $('#slideshow img:last');
var $next = $active.next().length ? $active.next()
: $('#slideshow img:first');
$active.addClass('last-active');
$next.css({opacity: 0.0})
.addClass('active')
.animate({opacity: 1.0}, 1500, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval("slideSwitch()", 10000);
});
<div id="nav">
<ul>
<li>
<a href="">RM</a>
</li>
<div class="diagonal"></div>
<li>
<a href="">Offerte</a>
</li>
<div class="diagonal"></div>
<li>
<a href="">Contact</a>
</li>
</ul>
</div>
<div id="slideshow">
<img src="img/Route 163.jpg" alt="Slideshow Image 1" class="active">
<img src="img/Spring.jpg" alt="Slideshow Image 2">
<img src="img/Road to America.jpg" alt="Slideshow Image 3">
<img src="img/Kopenhagen.jpg" alt="Slideshow Image 4">
</div>