Determines if the carousel will slide automatically based on "autoplayInterval".
Determines if the carousel should stop auto sliding when the mouse hovers the carousel.
Changes the timing for auto slide in milliseconds.
Aligns the current slide in the center of the carousel instead of to the left-side.
Controls
Change the contents and styles of the previous/next controls and pagination for the carousel. HTML can be passed in a String to "previous" and "next".
Styles must be passed as an object.
Group all items in current view to move all outside of view and show all new items when the carousel is dragged or the pagination or control buttons are clicked. By default, items are treated individually and will move one at a time. Caveat - if both `group` and `loop` are set to true, ensure there is no remainder of slides when dividing total slide-count by the value of `slidesVisible` at the current breakpoint.
Determines if the carousel should loop infintely. If false, carousel will only animate between first and last slide.
Determines if the carousel slides can be dragged using the mouse when holding left click. Note - the slides can be dragged on touch devices still even when mouseDrag is set to false.
This option works better when slides are not populated with links.

Determines if the carousel can be swiped until only the last slide is visible on the left side of the screen.

If false, the carousel will not be slideable once the last slide is visible on screen.

For pagination - If true, a pagination button will be used for each slide. If false, pagination buttons will only show for the first slide rendered up to the first slide visible where the last slide is on screen (paginationCount = totalSlides - visibleSlidesOnScreen + 1). This is to prevent sliding past the last slide.

Note - this option has no effect if loop is true.

Change number of slides in carousel
(Not a config option)
Slides Visible
Change the number of slides visible at specific breakpoints. The number can be a whole number or decimal. If a breakpoint is null, the carousel will use the value from a previous breakpoint.
Slide Padding
Change the padding between slides for specific breakpoints. If a unit of measurement is not included in the value, it will be assumed to be a pixel value.
The index of the slide to start on when the carousel renders. If the index is invalid, the default will be used.
Removes the carousel functionality and animation at the specified breakpoint and shows all items on screen.
Determines if the user can drag carousele slides with touch input such as on mobile and tablets or with touch screen monitors. This is set to true by default as touch drag is better UX on touch devices compared to button presses.
The CSS transition-duration property that controls how long it takes to animate between slides.
The CSS transition-timing-function property that controls the animation timing function between slides.
📋 Copy Config