autoplayInterval
it indicates the interval of time in milliseconds between autoplay transition (scroll).
For Example, if autoplayInterval: 3000
is configured, the blaze-slider will scroll the slider every 3 seconds. (if autoplay is enabled)
default
autoplayInterval: 3000
Example autoplayInterval: 3000
(default)
new BlazeSlider(el, {
all: {
enableAutoplay: true,
autoplayInterval: 3000,
slidesToShow: 3,
},
})
Example autoplayInterval: 1000
new BlazeSlider(el, {
all: {
enableAutoplay: true,
autoplayInterval: 1000,
slidesToShow: 3,
},
})