/***
Simple jQuery Slideshow Script
Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc. Please link out to me if you like it :)
***/
function slideSwitch() {
var $active = $('#slideshow IMG.active');
if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
// use this to pull the images in the order they appear in the markup
var $next = $active.next().length ? $active.next()
: $('#slideshow IMG:first');
// uncomment the 3 lines below to pull the images in random order
// 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}, 500, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval( "slideSwitch()", 2500 );
});
我需要滑动所有5张图片。问题是在第二张图像上停止并在刷新后继续正常工作。如果你粘贴网址(或在浏览器中按下),这只会显示2张图片。
如果我将动画和setinterval都更改为1000,那么它的动画效果不佳。
有人可以帮助我完成这项工作。
它看起来像一个bug,因为如果我做页面刷新它的工作,但不是我打开页面时。这是bug https://stackoverflow.com/questions/11872278/is-this-a-bug-in-google-chrome-slider-not-worked
的详细信息答案 0 :(得分:2)
不确定你想要的是什么,但改变了这个:
$(function() {
setInterval( "slideSwitch()", 2500 );
});
到
setInterval(slideSwitch, 2500);
<强> P.S。强>
适用于Chrome v。21.0.1180.60 m