autoplayDirection
It indicates the direction of the autoplay - to right
or to left
possible values
autoplayDirection: 'to left' | 'to right'
default
autoplayDirection: 'to left'
Example autoplayDirection: "to left"
(default)
new BlazeSlider(el, {
all: {
autoplayDirection: 'to left', // <--
enableAutoplay: true,
slidesToShow: 3,
enableAutoplay: true,
},
})
Example autoplayDirection: "to right"
new BlazeSlider(el, {
all: {
autoplayDirection: 'to right', // <--
enableAutoplay: true,
slidesToShow: 3,
},
})