0
/*** 
    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 张图片。

如果我将 animate 和 setinterval 都更改为 1000,则动画效果不佳。

有人可以帮助我如何完成这项工作。


它看起来像一个错误,因为如果我刷新页面,它就可以工作,但当我打开页面时就不行。这是错误的详细信息https://stackoverflow.com/questions/11872278/is-this-a-bug-in-google-chrome-slider-not-worked

4

1 回答 1

2

不确定是你想要的但改变了这个:

$(function() {
    setInterval( "slideSwitch()", 2500 );
});​

setInterval(slideSwitch, 2500);

例子

PS
适用于 Chrome v。21.0.1180.60 m

于 2012-08-08T17:42:10.337 回答