API
autoplayDirection
Direction of automatic slide advancement
Direction the slider moves during autoplay.
autoplayDirection: 'to left' | 'to right'; // default: 'to left'Example: To left (default)
new BlazeSlider(el, {
all: {
enableAutoplay: true,
autoplayDirection: 'to left',
slidesToShow: 3,
},
});Example: To right
new BlazeSlider(el, {
all: {
enableAutoplay: true,
autoplayDirection: 'to right',
slidesToShow: 3,
},
});