Blaze Slider
API

draggable

Enable drag/swipe navigation

Whether the slider can be dragged or swiped.

draggable: boolean; // default: true

Example: Draggable (default)

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

Example: Not draggable

Try dragging - it won't work. Pagination and Navigation buttons are added in this example to allow changing slides since the dragging is disabled.

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

On this page