Blaze Slider
API

autoplayInterval

Time between automatic slides

Time in milliseconds between automatic slide transitions.

autoplayInterval: number; // default: 3000

Example: 3 seconds (default)

new BlazeSlider(el, {
  all: {
    enableAutoplay: true,
    autoplayInterval: 3000,
    slidesToShow: 3,
  },
});
1
2
3
4
5
6

Example: 1 second

new BlazeSlider(el, {
  all: {
    enableAutoplay: true,
    autoplayInterval: 1000,
    slidesToShow: 3,
  },
});
1
2
3
4
5
6

On this page