gpt4 book ai didi

javascript - 随机化此幻灯片中的第一张图片?

转载 作者:行者123 更新时间:2023-11-30 06:03:40 25 4
gpt4 key购买 nike

我有 this基于 jquery 的幻灯片显示运行良好,作者甚至加入了我需要的随机设置。它工作得很好除了它不会随机化第一张幻灯片。有任何想法吗?谢谢:)

这是 js:(或转到 original page 了解更多信息)

function slideSwitch() {
var $active = $('#slideshow DIV.active');

if ( $active.length == 0 ) $active = $('#slideshow DIV:last');

// use this to pull the divs in the order they appear in the markup
// var $next = $active.next().length ? $active.next()
// : $('#slideshow DIV:first');

// uncomment below to pull the divs randomly
var $sibs = $active.siblings();
var rndNum = Math.floor(Math.random() * $sibs.length );
var $next = $( $sibs[ rndNum ] );


$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()", 20000 );
});

HTML:

<div id="slideshow">
<div class="active">
<img src="img/img1.jpg" />
</div>
<div>
<img src="img/img2.jpg" />
</div>
<div>
<img src="img/img3.jpg" />
</div>
</div>

最佳答案

看起来它只随机化事件幻灯片的 sibling ,不包括当前事件幻灯片,这是您加载页面时的第一张幻灯片。您可以修复插件的代码,或者像我一样懒惰,并在初始化幻灯片之前随机化这些图像。使用类似于此处答案中的插件:Randomize a sequence of div elements with jQuery

关于javascript - 随机化此幻灯片中的第一张图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6640064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com