如何在JSSOR插件中滑动到右侧

时间:2014-06-12 10:01:16

标签: jquery jssor

我制作了一个带有8个小图像的滑块并启用了autoPlay,但是方向仍然是从右到左所以如何将动作反转为(从左到右)

尝试编辑_PlayDirection,但没有结果

var nestedSliders = [];
    var jssor_sliderh;
    $.each(["sliderh1_container", "sliderh2_container"], function(index, value) {

        var sliderhOptions = {
            $AutoPlay: true, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
            $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
            $AutoPlaySteps: 1, //[Optional] Steps to go for each navigation request (this options applys only when slideshow disabled), the default value is 1
            $SlideDuration: 1000, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
            $MinDragOffsetToSlide: 20, //[Optional] Minimum drag offset to trigger slide , default value is 20
            $SlideWidth: 89, //[Optional] Width of every slide in pixels, default value is width of 'slides' container
            $SlideHeight: 90, //[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
            $DisplayPieces: 8, //[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
            $ParkingPosition: 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).
            $DragOrientation: 0,
            $BulletNavigatorOptions: {//[Optional] Options to specify and enable navigator or not
                $Class: $JssorBulletNavigator$, //[Required] Class to create navigator instance
                $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
                $AutoCenter: 0, //[Optional] Auto center navigator in parent container, 0 None, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
                $Steps: 1, //[Optional] Steps to go for each navigation request, default value is 1
                $Lanes: 1, //[Optional] Specify lanes to arrange items, default value is 1
                $SpacingX: 0, //[Optional] Horizontal space between each item in pixel, default value is 0
                $SpacingY: 0, //[Optional] Vertical space between each item in pixel, default value is 0
                $Orientation: 1                                 //[Optional] The orientation of the navigator, 1 horizontal, 2 vertical, default value is 1
            }
        };
        jssor_sliderh = new $JssorSlider$(value, sliderhOptions);
        if (index === 1) { // if second slider since I have two Horzontial sliders with reverse motion
            jssor_sliderh.$On($JssorSlider$.$EVT_STATE_CHANGE, function(slideIndex, progress, progressBegin, idleBegin, idleEnd, progressEnd)
            {
                setTimeout(
                        function()
                        {
                            jssor_sliderh.$PlayTo(slideIndex - 1);
                        }, 3000);
            });
        }

        nestedSliders.push(jssor_sliderh);
    });

1 个答案:

答案 0 :(得分:1)

很高兴知道要求并感谢好问题。 我刚刚修复了$ JssorSlider $。$ EVT_STATE_CHANGE事件触发器和更新的下载。 请下载最新版本。

请将$ AutoPlay设置为false并使用api调用来达到目标​​。

<script>
    jQuery(document).ready(function ($) {
        var options = {
            $AutoPlay: false,
            $DragOrientation: 3
        };

        var jssor_slider1 = new $JssorSlider$("slider1_container", options);

        jssor_slider1.$On($JssorSlider$.$EVT_STATE_CHANGE, function (slideIndex, progress, progressBegin, idleBegin, idleEnd, progressEnd)
        {
            if(progress == progressEnd)
            {
                //play to previous slide when a slide plays over
                jssor_slider1.$PlayTo(slideIndex - 1);
            }
        });
    });
</script>