API
autoplayInterval
Time between automatic slides
Time in milliseconds between automatic slide transitions.
autoplayInterval: number; // default: 3000Example: 3 seconds (default)
new BlazeSlider(el, {
all: {
enableAutoplay: true,
autoplayInterval: 3000,
slidesToShow: 3,
},
});Example: 1 second
new BlazeSlider(el, {
all: {
enableAutoplay: true,
autoplayInterval: 1000,
slidesToShow: 3,
},
});