如何自动播放此javascript滑块?

时间:2013-04-04 08:24:13

标签: javascript jquery slider autoplay

我找到了这个漂亮的js滑块,通过单击单选按钮,选择要查看的幻灯片。

我希望它能够自动播放幻灯片,并为幻灯片和过渡提供时间,但我真的不确定在哪里放置这些值。

我已经看到了关于类似问题的其他问题,但找不到我问题的正确答案。请帮帮忙?

<script type="text/javascript">
    $(document).ready(function () {

        var showCaseItems = $('.show-case-item').hide();

        var splashes = $('.splash').hide();
        //get each image for each slide and set it as a background of the slide
        //            splashes.each(function () {
        //                var img = $(this).find('img');
        //                var imgSrc = img.attr('src');
        //                img.css('visibility', 'hidden');
        //                $(this).css({ 'background-image': 'url(' + imgSrc + ')', 'background-repeat': 'no-repeat' });
        //            });

        splashes.eq(0).show();
        showCaseItems.eq(0).show();

        var prevIndex = -1;
        var nextIndex = 0;
        var currentIndex = 0;

        $('#banner-pagination li a').click(function () {

            nextIndex = parseInt($(this).attr('rel'));

            if (nextIndex != currentIndex) {
                $('#banner-pagination li a').html('<img src="assets/img/slidedot.png" alt="slide"/>');
                $(this).html('<img src="assets/img/slidedot-active.png" alt="slide"/>');
                currentIndex = nextIndex;
                if (prevIndex < 0) prevIndex = 0;

                splashes.eq(prevIndex).css({ opacity: 1 }).animate({ opacity: 0 }, 500, function () {
                    $(this).hide();
                });
                splashes.eq(nextIndex).show().css({ opacity: 0 }).animate({ opacity: 1 }, 500, function () { });

                showCaseItems.eq(prevIndex).css({ opacity: 1 }).animate({ opacity: 0 }, 500, function () {
                    $(this).hide();
                    showCaseItems.eq(nextIndex).show().css({ opacity: 0 }).animate({ opacity: 1 }, 200, function () { });
                });

                prevIndex = nextIndex;
            }

            return false;
        });

    });
</script>

3 个答案:

答案 0 :(得分:1)

您可以使用jquery和setTimeout

setTimeout(function() {$('#banner-pagination li a').trigger('click');}, 1500);

此代码将每1.5秒循环一次并触发#banner-pagination li a

上的点击

答案 1 :(得分:0)

您可以使用jquery触发事件并强行点击单击按钮事件

  

$( '#富')触发( '点击');

     

http://api.jquery.com/trigger/

答案 2 :(得分:0)

setInterval(function() 
  {$('#banner-pagination li a[rel='+((currentIndex+1)%3)+']').trigger('click');},5000);

由于