Bootstrap

API carousel

CarouselApi

interface

Represents the API for a carousel component.

Properties
emblaApi

emblaApi: () => undefined | EmblaCarouselType

Retrieve the inner EmblaApi object

Returns

undefined | EmblaCarouselType


plugins

plugins: () => undefined | EmblaPluginsType

Retrieve the enabled plugins

Returns

undefined | EmblaPluginsType


scrollNext

scrollNext: (jump?) => void

Scroll to the next snap point if possible.

Parameters
jump?

boolean

scroll instantly

Returns

void


scrollPrev

scrollPrev: (jump?) => void

Scroll to the previous snap point if possible.

Parameters
jump?

boolean

scroll instantly

Returns

void


scrollTo

scrollTo: (index, jump?) => void

Scroll to a snap point by index

Parameters
index

number

the snap point index

jump?

boolean

scroll instantly

Returns

void


CarouselContext

type alias

CarouselContext<SlideData> = WidgetSlotContext<CarouselWidget<SlideData>>

Represents the context for a carousel.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.


CarouselDirectives

interface

Represents the directives for a carousel component.

Properties
container

container: Directive

A directive to be applied to container of the carousel.


root

root: Directive

the root directive


scrollNext

scrollNext: Directive

A directive to be applied to a navigation button allowing to scroll to the next slide.


scrollPrev

scrollPrev: Directive

A directive to be applied to a navigation button allowing to scroll to the previous slide.


slide

slide: Directive<{ id: string; index: number; }>

A directive to be applied to each slide in the carousel.


tabIndicator

tabIndicator: Directive<{ id: string; index: number; jump: boolean; }>

A directive to be applied to a navigation indicator allowing to scroll to the corresponding slide. As this directive adds the role tab to the element, it is recommended to use it on a button or a link and the parent element should have the tabList directive attached.


tabList

tabList: Directive

A directive to be applied to a tab list allowing to navigate to the corresponding slide. This directive adds the role tablist and is recommended to be used together with tabIndicator.


CarouselProps

interface

Interface representing the properties for a carousel component.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.

Properties
align

align: "start" | "center" | "end"

Align the slides relative to the carousel viewport

See

https://www.embla-carousel.com/api/options/#align

Default Value

'center'


ariaIndicatorLabel

ariaIndicatorLabel: (index) => string

Aria label for navigation indicators

Parameters
index

number

Returns

string


ariaLive

ariaLive: string

The aria-live attribute value for the carousel container.

Default Value

'polite'


ariaNextLabel

ariaNextLabel: string

Aria label for next button


ariaPrevLabel

ariaPrevLabel: string

Aria label for previous button


className

className: string

CSS classes to be applied on the widget main container

Default Value

''


container

container: null | string

Enables choosing a custom container element which holds the slides. By default, Embla will choose the first direct child element of the root element. Provide a valid CSS selector string.

See

https://www.embla-carousel.com/api/options/#container


containerClass

containerClass: string

Class name to apply to the container of the carousel.

Default Value

''


containScroll

containScroll: false | "trimSnaps" | "keepSnaps"

Clear leading and trailing empty space that causes excessive scrolling

See

https://www.embla-carousel.com/api/options/#containScroll

Default Value

'trimSnaps'


direction

direction: "ltr" | "rtl"

Choose content direction between ltr and rtl

See

https://www.embla-carousel.com/api/options/#direction

Default Value

'ltr'


dragFree

dragFree: boolean

Enables momentum scrolling

See

https://www.embla-carousel.com/api/options/#dragFree

Default Value

false


dragThreshold

dragThreshold: number

Drag threshold in pixels

See

https://www.embla-carousel.com/api/options/#dragThreshold

Default Value

10


duration

duration: number

Set scroll duration when triggered by any of the API methods

See

https://www.embla-carousel.com/api/options/#duration

Default Value

25


loop

loop: boolean

Enables infinite looping

See

https://www.embla-carousel.com/api/options/#loop

Default Value

false


navigation

navigation: SlotContent<CarouselContext<SlideData>>

The navigation layer of the carousel.

Default Value

undefined


plugins

plugins: CreatePluginType<LoosePluginType, {}>[]

Plugins to extend the carousel with additional features

Default Value

[]


showNavigationArrows

showNavigationArrows: boolean

If true, 'previous' and 'next' navigation arrows will be visible.


showNavigationIndicators

showNavigationIndicators: boolean

If true, navigation indicators at the bottom of the slide will be visible.


skipSnaps

skipSnaps: boolean

Allow the carousel to skip scroll snaps if it's dragged vigorously

See

https://www.embla-carousel.com/api/options/#skipsnaps

Default Value

false


slide

slide: SlotContent<CarouselSlideContext<SlideData>>

The content of each slide in the carousel.

Default Value

undefined


slideClass

slideClass: string | (slideContext) => string

Class name to apply to each slide in the carousel.

Default Value

''


slidesData

slidesData: SlideData[]

The data for each slide in the carousel.

Default Value

[]


structure

structure: SlotContent<CarouselContext<SlideData>>

The structure of the carousel.

Default Value

undefined


CarouselSlideContext

type alias

CarouselSlideContext<SlideData> = WidgetSlotContext<CarouselWidget<SlideData>> & SlideData

Represents the context for a carousel slide.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.


CarouselState

interface

Represents the state of a carousel component.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.

Properties
ariaLive

ariaLive: string

The aria-live attribute value for the carousel container.

Default Value

'polite'


canScrollNext

canScrollNext: boolean

can carousel scroll to next slide


canScrollPrev

canScrollPrev: boolean

can carousel scroll to previous slide


className

className: string

CSS classes to be applied on the widget main container

Default Value

''


containerClass

containerClass: string

Class name to apply to the container of the carousel.

Default Value

''


direction

direction: "ltr" | "rtl"

Choose content direction between ltr and rtl

See

https://www.embla-carousel.com/api/options/#direction

Default Value

'ltr'


initialized

initialized: boolean

is the carousel initialized


navigation

navigation: SlotContent<CarouselContext<SlideData>>

The navigation layer of the carousel.

Default Value

undefined


scrolling

scrolling: boolean

is the carousel currently scrolling


selectedScrollSnap

selectedScrollSnap: number

selected scroll snap


showNavigationArrows

showNavigationArrows: boolean

If true, 'previous' and 'next' navigation arrows will be visible.


showNavigationIndicators

showNavigationIndicators: boolean

If true, navigation indicators at the bottom of the slide will be visible.


slide

slide: SlotContent<CarouselSlideContext<SlideData>>

The content of each slide in the carousel.

Default Value

undefined


slideClass

slideClass: string | (slideContext) => string

Class name to apply to each slide in the carousel.

Default Value

''


slidesData

slidesData: SlideData[]

The data for each slide in the carousel.

Default Value

[]


structure

structure: SlotContent<CarouselContext<SlideData>>

The structure of the carousel.

Default Value

undefined


CarouselWidget

type alias

CarouselWidget<SlideData> = Widget<CarouselProps<SlideData>, CarouselState<SlideData>, CarouselApi, CarouselDirectives>

Represents a carousel widget with specific properties, state, API, and directives.

Type Parameters
SlideData

SlideData extends object

The type of the data for each slide.


createCarousel

constant

const createCarousel: <SlideData>(config?) => CarouselWidget<SlideData>

Create a Carousel with given config props

Type Parameters
SlideData

SlideData extends object

The type of the data for each slide.

Parameters
config?

PropsConfig<CarouselProps<SlideData>>

an optional carousel config

Returns

CarouselWidget<SlideData>

a CarouselWidget


getCarouselDefaultConfig

constant

const getCarouselDefaultConfig: () => CarouselProps<any>

Retrieve a shallow copy of the default Carousel config

Returns

CarouselProps<any>

the default Carousel config