0

使用来自http://jonraasch.com/blog/a-simple-jquery-slideshow的代码

我创建了一个jsfiddle。

问题是幻灯片在 jsfiddle 中不起作用,所以我不能根据我的需要调整它

任何人都知道问题是什么

http://jsfiddle.net/UUKP4/8/

代码

  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');

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

        </script>

        <style type="text/css">

        /*** set the width and height to match your images **/

        #slideshow {
            position:relative;
            height:350px;
        }

        #slideshow IMG {
            position:absolute;
            top:0;
            left:0;
            z-index:8;
            opacity:0.0;
        }

        #slideshow IMG.active {
            z-index:10;
            opacity:1.0;
        }

        #slideshow IMG.last-active {
            z-index:9;
        }

        </style>


        <div id="slideshow">
          <img src="http://jonraasch.com/img/slideshow/simple-jquery-slideshow.png" alt="Slideshow Image 1" class="active" />
          <img src="http://jonraasch.com/img/slideshow/mini-golf-ball.jpg" alt="Slideshow Image 2" />
          <img src="http://jonraasch.com/img/slideshow/jon-raasch.jpg" alt="Slideshow Image 3" />
          <img src="http://jonraasch.com/img/slideshow/ear-cleaning.jpg" alt="Slideshow Image 4" />
    </div>
4

2 回答 2

3

你的代码有问题。您在发送到setInterval的处理程序上有额外的括号。

当向函数发送处理程序时,我们不写括号。如果它们被编写,实际发生的是函数 ( slideSwitch()) 被调用并且它的返回值被发送到函数 ( setInterval)。

$(function () {
    setInterval(slideSwitch, 5000); // Not slideSwitch()
});

现在它正在工作

jsFiddle 演示

于 2013-08-22T11:27:29.640 回答
2

从您的setInterval:中删除括号

setInterval(slideSwitch, 5000);

的第一个参数setInterval查找每毫秒运行一次的函数。您不是在引用该函数,而是在调用它。在您的示例中,您实际上是在第一个参数中调用该函数(并且一旦您的脚本加载)。我想您的函数会返回null,因此您不会收到 JavaScript 错误,而只是null每 5000 毫秒运行一次。

于 2013-08-22T11:27:02.723 回答