Jssor 滑块不会自动启动

Jssor slider does not start automatically

这是我的代码;滑块不会自动启动:

<div id="slider" style="position: relative; margin: 0px;  top: 0px; left: 0px; width: 100%;  height: 300px; overflow: hidden;">
            <div   u="slides" style="cursor: default;  width: 960px; height: 300px;overflow: hidden;">

我认为这可能是因为父 div 中的 width=100%。当我将宽度更改为 960px 时,即任何 px 值 (width=960px) 它工作正常但宽度减小。

截图供参考

编辑:

http://pixelcreations.in/parking/ link 供参考

自动播放已设置为 true

宽度设置为 100% 时控制台出错

未捕获错误:无法缩放 jssor 滑块,未指定 'outer container' 的 'width'。请以像素为单位指定 'width'。例如'width: 600px;' jssor.slider.js:1952

未捕获类型错误:无法读取未定义的 属性“$EnablePlayer”

使用它并在真实模式下设置 autoplat

var options = {
        $AutoPlay: false,                                    //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
        $AutoPlaySteps: 1,                                  //[Optional] Steps to go for each navigation request (this options applys only when slideshow disabled), the default value is 1
        $AutoPlayInterval: 2000,                            //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
        $PauseOnHover: 1,                               //[Optional] Whether to pause when mouse over if a slider is auto playing, 0 no pause, 1 pause for desktop, 2 pause for touch device, 3 pause for desktop and touch device, default value is 1

        $ArrowKeyNavigation: true,                          //[Optional] Allows keyboard (arrow key) navigation or not, default value is false
        $SlideDuration: 300,                                //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
        $MinDragOffsetToSlide: 80,                          //[Optional] Minimum drag offset to trigger slide , default value is 20
        //$SlideWidth: 600,                                 //[Optional] Width of every slide in pixels, default value is width of 'slides' container
        //$SlideHeight: 150,                                //[Optional] Height of every slide in pixels, default value is height of 'slides' container
        $SlideSpacing: 3,                                   //[Optional] Space between each slide in pixels, default value is 0
        $Cols: 1,                                  //[Optional] Number of pieces to display (the slideshow would be disabled if the value is set to greater than 1), the default value is 1
        $Align: 0,                                //[Optional] The offset position to park slide (this options applys only when slideshow disabled), default value is 0.
        $UISearchMode: 0,                                   //[Optional] The way (0 parellel, 1 recursive, default value is 1) to search UI components (slides container, loading screen, navigator container, arrow navigator container, thumbnail navigator container etc).
        $PlayOrientation: 2,                                //[Optional] Orientation to play slide (for auto play, navigation), 1 horizental, 2 vertical, default value is 1
        $DragOrientation: 0, 

您正在将滑块的宽度设置为可用宽度的 70%。

//calculate slider width as 70% of available width
var sliderWidth = availableWidth * 0.7;

所以我将其更改为:

var sliderWidth = availableWidth * 1;

或更好:

var sliderWidth = availableWidth;

检查这个插件:http://plnkr.co/edit/mw58px1v1ZhR3IuAmG2C?p=preview