0

我正在尝试创建一个淡入淡出的图像幻灯片,只有我的第一张图像不断刷新,有人能看到我哪里出错了吗?

HTML:

<div id="slideshow">
    <a href="#"><img src="http://placekitten.com/200/300" class="active"/></a>
    <a href="#"><img src="http://placekitten.com/300/400"/></a>
    <a href="#"><img src="http://placekitten.com/350/500"/></a>
    <a href="#"><img src="http://placekitten.com/370/600"/></a>
</div>

jQuery:

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

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

    // use this to pull the images in the order they appear in the markup
    var $next = $active.next().length ? $active.next() : $('#slideshow a 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
    }, 1000, function() {
        $active.removeClass('active last-active');
    });
};

$(function() {
    setInterval(slideSwitch, 5000);
});​

http://jsfiddle.net/eSrcr/1/

4

2 回答 2

2

问题是因为您在变量上next()使用$active。没有next()元素,因为每个元素都img包含在它自己的a.

试试这个:

var $next = $active.parent().next("a").find("img").length ? $active.parent().next("a").find("img") : $('#slideshow img:first');

示例小提琴

不过,您需要确保淡出/隐藏之前的图像,因为它们的大小都不同。

于 2012-04-18T11:16:13.957 回答
0

代替:

var $next = $active.next().length ? $active.next() : $('#slideshow a IMG:first');

和:

var $next =  $active.parent().next().find("img").length ? $active.parent().next().find("img")
    : $('#slideshow a IMG:first');
于 2012-04-18T11:19:14.163 回答