作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 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/
我是一名优秀的程序员,十分优秀!