gpt4 book ai didi

jquery - 如何在JSSOR插件中向右滑动

转载 作者:行者123 更新时间:2023-12-01 04:49:00 24 4
gpt4 key购买 nike

我制作了一个带有 8 个小图像的 slider 并启用了自动播放,但方向仍然是从右到左,那么如何将运动反转为(从左到右)

尝试编辑_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);
});

最佳答案

很高兴了解要求并感谢您提出的好问题。我刚刚修复了 $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>

关于jquery - 如何在JSSOR插件中向右滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24181620/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com