2016-09-16 73 views
1

以下是JavaScript的使用方法相同,但滑块不处于自动播放模式。我用于革命滑块的代码如下所示。滑块工作,但只点击...它不自动播放模式如何在HTML网站中启用革命滑块的自动播放功能

/* ========================================================== */ 
    /* Revolution Slider - Home Page       */ 
    /* ========================================================== */ 
    var tpj = jQuery; 

    var revapi202; 
    tpj(document).ready(function() { 
     if (tpj("#rev_slider_202_1").revolution == undefined) { 
      revslider_showDoubleJqueryError("#rev_slider_202_1"); 
     } else { 
      revapi202 = tpj("#rev_slider_202_1").show().revolution({ 
       sliderType: "carousel", 
       jsFileLocation: "../../revolution/js/", 
       sliderLayout: "fullscreen", 
       dottedOverlay: "none", 
       delay: 1000, 
       navigation: { 
        keyboardNavigation: "off", 
        keyboard_direction: "horizontal", 
        mouseScrollNavigation: "off", 
        onHoverStop: "off", 
        touch: { 
         touchenabled: "on", 
         swipe_threshold: 75, 
         swipe_min_touches: 50, 
         swipe_direction: "horizontal", 
         drag_block_vertical: false 
        }, 
        bullets: { 
         enable: true, 
         hide_onmobile: true, 
         hide_under: 800, 
         style: "zeus", 
         hide_onleave: false, 
         direction: "horizontal", 
         h_align: "center", 
         v_align: "bottom", 
         h_offset: 0, 
         v_offset: 30, 
         space: 5, 
         tmp: '<span class="tp-bullet-image"></span><span class="tp-bullet-imageoverlay"></span><span class="tp-bullet-title">{{title}}</span>' 
        } 
       }, 
       carousel: { 
         horizontal_align: "center", 
         vertical_align: "center", 
         fadeout: "off", 
         maxVisibleItems: 3, 
         infinity: "on", 
         space: 0, 
         stretch: "off" 
       }, 
       responsiveLevels: [1240, 1024, 778, 480], 
       visibilityLevels: [1240, 1024, 778, 480], 
       gridwidth: [1240, 1024, 778, 480], 
       gridheight: [868, 768, 960, 720], 
       lazyType: "none", 
       shadow: 0, 
       spinner: "off", 
       stopLoop: "on", 
       stopAfterLoops: 0, 
       stopAtSlide: 0, 
       shuffle: "off", 
       autoHeight: "off", 
       minHeight:600, 
       fullScreenAutoWidth: "off", 
       fullScreenAlignForce: "off", 
       fullScreenOffsetContainer: "", 
       fullScreenOffset: "60px", 
       disableProgressBar: "on", 
       hideThumbsOnMobile: "off", 
       hideSliderAtLimit: 0, 
       hideCaptionAtLimit: 0, 
       hideAllCaptionAtLilmit: 0, 
       debugMode: false, 
       fallbacks: { 
        simplifyAll: "off", 
        nextSlideOnWindowFocus: "off", 
        disableFocusListener: false, 
       } 
      }); 
     } 
    }); /*ready*/ 

回答