Blaze Slider
API

loop

Enable infinite looping

Whether the slider loops infinitely.

loop: boolean; // default: true

Example: Loop enabled (default)

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

Example: Loop disabled

Navigation stops at first and last slides:

new BlazeSlider(el, {
  all: {
    loop: false,
    slidesToShow: 3,
  },
});
1
2
3
4
5
6

On this page