0

所以我用这个地方来帮助我创建幻灯片,但是,由于 CSS 的某些限制,你不能将 box-shadow 属性设置为 IMG。

然而,问题是由于脚本的性质,一旦它通过 IMG 运行完成,它就会遇到 div。

脚本不应该遇到 div,因为 div 仅用于装饰(同样,因为 box-shadow 不能用于 IMG)。我希望有人能够帮助我格式化代码以忽略#slideshadow div。

HTML(用替换图片编辑,感谢 CSS,尺寸是必要的):

<div id="slideshow">
  <img class="active" src="http://i.imgur.com/pPPkQDZ.jpg" alt="" />
  <img src="http://i.imgur.com/Axp8aGT.jpg" alt="" />
  <img src="http://i.imgur.com/UMpQ9eh.jpg" alt="" />
<div id="slideshadow">&nbsp;</div>
</div>

CSS:

#slideshadow {
    position: absolute;
    height:455px;
    width: 750px;
    box-shadow: inset 0px 0px 80px 0px rgba(0,0,0,0.75);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 5px groove #990000;
    z-index: 15;
}

#slideshow {
    position:relative;
    height:455px;
    width: 750px;
    float: left;
}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 5px groove #990000;
}

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

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

脚本:

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

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

    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, 3000 );
});
4

1 回答 1

0

你可以在里面传递一个特定的元素.next()

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

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

    var $next = $active.next('img').length ? $active.next('img'): $('#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, 3000 );
});
于 2015-04-13T13:39:33.843 回答