我正在尝试设置此幻灯片脚本,以便显示的第一张图片是随机的(我需要每次去网站时第一张图片都是不同的/随机幻灯片),剩余的图片可以显示在正确的顺序,没关系。
我正在使用Jon Raasch的简单jquery幻灯片脚本,在这里:
<script type="text/javascript">
function slideSwitch() {
var $active = $('#slideshow DIV.active');
if ( $active.length == 0 ) $active = $('#slideshow DIV:last');
var $next = $active.next().length ? $active.next()
: $('#slideshow DIV:first');
$active.addClass('last-active');
$next.css({opacity: 0.0})
.addClass('active')
.animate({opacity: 1.0}, 1000, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval( "slideSwitch()", 2500 );
});
</script>
<div id="slideshow">
<div class="active"><img src="images/slide1.jpg"></div>
<div><img src="images/slide2.jpg"></div>
<div><img src="images/slide3.jpg"></div>
<div><img src="images/slide4.jpg"></div>
<div><img src="images/slide5.jpg"></div>
</div>
和CSS:
#slideshow {
position:relative;
height:401px;
}
#slideshow div {
position:absolute;
top:0;
left:0;
z-index:8;
opacity:0.0;
}
#slideshow div.active {
z-index:10;
opacity:1.0;
}
#slideshow div.last-active {
z-index:9;
}
我尝试了一些东西,但javascript真的不是我的一杯茶(这里的“设计师心灵”),我尝试过的东西不起作用。有什么想法吗?
非常感谢!
答案 0 :(得分:1)
从HTML中删除活动类,然后使用此代码初始设置它,方法是更改此行并调整CSS,以便在JS运行之前不会看到幻灯片:
if ( $active.length == 0 ) $active = $('#slideshow DIV:last');
到此:
if ( $active.length == 0 ) {
var slides = $('#slideshow DIV');
$active = slides.eq(Math.floor(Math.random() * slides.length));
}
答案 1 :(得分:1)
根据jfriend00的回答,您需要将脚本设置为:
function slideSwitch() {
var $active = $('#slideshow div.active');
if ( $active.length == 0 ) {
var slides = $('#slideshow div');
$active = slides.eq(Math.floor(Math.random() * slides.length));
}
var $next = $active.next().length ? $active.next()
: $('#slideshow div:first');
$active.addClass('last-active');
$next.css({opacity: 0.0})
.addClass('active')
.animate({opacity: 1.0}, 1000, function() {
$active.removeClass('active last-active');
});
}
$(function() {
slideSwitch();
setInterval( function(){slideSwitch()}, 2500 );
});
有一些语法错误,我不得不改变调用setInterval的方式。
答案 2 :(得分:0)
这样的事情:
$(function() {
var slides, index, current, last, last_index;
slides = $('#slideshow div');
// initialize index randomly
index = Math.floor(Math.rand() * slides.length);
// do a % trick to get index - 1 looping
last_index = (index + slides.length - 1) % slides.length;
last = slices[last_index]; // initialize last
function slideSwitch() {
current = slides[index];
index = (index + 1) % slides.length; // % to loop
current.addClass("active");
last.addClass("last-active");
current.css({ "opacity": 0.0 })
.animate({ "opacity": 1.0}, 1000, function() {
current.removeClass("active");
last.addClass("active");
last.removeClass("last-active");
last = current;
});
}
setInterval(slideSwitch, 2500);
slideShow(); // run once now, because interval doesn't run until 2500ms
});