我使用jquery创建了一个图像滑块。我得到了完美的输出,但我的问题是 它运行单个循环,即如果有4个图像,则在最后一个图像停止后,我想使其循环,即在最后一个图像滑块显示第一个图像之后。
我的代码是:
<style type="text/css">
.active{
z-index:99;
}
</style>
<html>
<head>
</head>
<body>
<div id="slideshow">
<img src="1.jpg" style="position:absolute;" class="active" />
<img src="2.jpg" style="position:absolute;" />
<img src="3.jpg" style="position:absolute;" />
</div>
</body>
<script src="jquery-1.10.1.min.js"></script>
<script>
function slideSwitch() {
var $active = $('div#slideshow IMG.active');
var $next = $active.next();
$next.addClass('active');
$active.removeClass('active');
}
$(function() {
setInterval( "slideSwitch()", 2000 );
/*if($('#slideshow:last-child').hasClass('active'))
{
alert("Complete");
}*/
});
</script>
</html>
如何在循环模式下运行滑块。
应用这个简单滑块背后的原因是我想进一步自定义滑块。
答案 0 :(得分:1)
试试这段代码: -
function slideSwitch() {
var $active = $('div#slideshow img.active'),
$next;
if($('div#slideshow img.active').is(':last-child'))
{
$next = $('div#slideshow img').first(); // get the first image
}else{
$next = $active.next();
}
$next.addClass('active');
$active.removeClass('active');
}
答案 1 :(得分:1)
试试这个:
function slideSwitch() {
var $active = $('div#slideshow IMG.active');
var $next = $active.next();
if($next.length == 0) $next = $('div#slideshow IMG:first');
$next.addClass('active');
$active.removeClass('active');
}
答案 2 :(得分:1)
你走了:
JS小提琴:http://jsfiddle.net/3wAxB/
function slideSwitch() {
var $active = $('div#slideshow IMG.active');
var $next = $active.next();
if($next.length==0){
$next=$('#slideshow img').first();
}
$next.addClass('active');
$active.removeClass('active');
}
$(function() {
setInterval(slideSwitch, 2000 );
});
另请查看我对此问题的回答,它可能对您有用:Very short jQuery Image Slideshow