Reputation: 1
I manage to make a slider with multiple image to show. Here is my created slider:
But the effects is only sliding from right to left. I've already tried what stated here that copied the code here.Below code is my transition codes.
oMultipleJssorOptions: {
$AutoPlay: this.iAutoTransition,
$AutoPlaySteps: 3,
$SlideWidth: this.iWidth,
$SlideSpacing: 45,
$Align: 5,
$ArrowKeyNavigation: 1,
$PlayOrientation: 1,
$DragOrientation: 1,
$ArrowNavigatorOptions: {
$Class: $JssorArrowNavigator$,
$ChanceToShow: 2,
$Steps: 4
},
$BulletNavigatorOptions: {
$Class: $JssorBulletNavigator$,
$ChanceToShow: 3,
$Steps: 4,
$SpacingX: 16
}
}
This please see the gif for the created transition
Upvotes: 0
Views: 82
Reputation: 6985
Please specify different id for each individual slider.
e.g. if the first slider is jssor_1
, the second slider can be jssor_2
then. That's to say, you'd replace all jssor_1
with jssor_2
in the code of the second slider.
Upvotes: 0