« OPTIONS
|
THE API
»
Installation
NPM
npm install embla-carousel
import EmblaCarousel from 'embla-carousel'
QuickStart
HTML
<div class="embla">
<div class="embla__container">
<div class="embla__slide">
Slide 1
</div>
<div class="embla__slide">
Slide 2
</div>
<div class="embla__slide">
Slide 3
</div>
</div>
</div>
CSS
.embla {
overflow: hidden;
}
.embla__container {
display: flex;
will-change: transform;
}
.embla__slide {
position: relative;
flex: 0 0 auto;
width: 100%;
}
JavaScript
const emblaNode = document.querySelector('.embla')
const options = { loop: true }
const embla = EmblaCarousel(emblaNode, options)
Options
Configure Embla options by passing an object as the second argument. Default options values are:
const embla = EmblaCarousel(emblaNode, {
align: 'center',
containerSelector: '*',
slidesToScroll: 1,
containScroll: false,
draggable: true,
dragFree: false,
loop: false,
speed: 10,
startIndex: 0,
selectedClass: 'is-selected',
draggableClass: 'is-draggable',
draggingClass: 'is-dragging',
})
align
type: string
Align the slides relative to the carousel viewport.
start
· center
· end
containerSelector
type: string
A query selector for the container that holds the slides, where all immediate children will be treated as slides.
*
· .my-classname
slidesToScroll
type: number
Scrolls past given number of slides whether scroll is triggered by the API methods or drag interactions.
1
· 2
containScroll
type: boolean
Contains slides to carousel viewport to prevent excessive scrolling at the beginning or end.
false
· true
draggable
type: boolean
Allow mouse & touch interactions to scroll the carousel.
true
· false
dragFree
type: boolean
Determines if the carousel should snap to a slide position after mouse & touch interactions.
false
· true
loop
type: boolean
Determines if the carousel should loop when start or end is reached.
false
· true
speed
type: number
Carousel speed when using buttons to navigate. A higher number will make transitions faster.
10
· 15
startIndex
type: number
Zero based index of the starting slide when carousel mounts.
0
· 3
selectedClass
type: string
Classname that will be applied to the selected slide.
is-selected
· my-class
draggableClass
type: string
Classname that will be applied to the wrapper when the carousel mounts if draggable.
is-draggable
· my-class
draggingClass
type: string
Classname that will be applied to the wrapper when a pointer is dragging the carousel.
is-dragging
· my-class
API
Embla exposes a set of methods upon setup that can be used to control the carousel externally. Example usage looks like this:
embla.scrollNext()
embla.scrollTo(2)
embla.changeOptions({ loop: true })
embla.on('select', () => {
console.log(`Selected snap index is ${embla.selectedScrollSnap()}!`)
})
...and the methods are:
containerNode()
Returns the current container element node.
slideNodes()
Returns the slides as an array of element nodes.
scrollNext()
Scrolls to next snap point if possible. If loop: false
and the carousel is on the last snap point this method will do nothing.
scrollPrev()
Scrolls to previous snap point if possible. If loop: false
and the carousel is on the first snap point this method will do nothing.
scrollTo(index)
Scrolls to the snap point that matches the passed index. If loop: true
the carousel will seek the closest way to the target.
canScrollPrev()
Returns if it's possible to scroll to a previous snap point. Note that if loop: true
this will always return true
.
canScrollNext()
Returns if it's possible to scroll to a next snap point. Note that if loop: true
this will always return true
.
selectedScrollSnap()
Returns the index of the selected snap point. Each snap point scrolls more than one slide if slidesToScroll > 1
. Zero-based.
previousScrollSnap()
Returns the index of the previous snap point. Each snap point scrolls more than one slide if slidesToScroll > 1
. Zero-based.
scrollSnapList()
Returns an array of all scroll snap points, each containing slide numbers and slide nodes. If total slide count is 4
and slidesToScroll: 2
, it means that every scroll snap point contains 2
slides because any scroll triggered by scrollNext() or scrollPrev() will scroll 2
slides at a time.
changeOptions(options)
Applies passed options by doing all the necessary calculations and reinitialising the carousel from scratch.
on(event, callback)
Subscribes to a custom Embla event by firing the passed callback. Below is a list of events you can subscribe to:
init
- When the carousel has been initialised for the first time.destroy
- When the carousel has been destroyed.select
- When a new target slide has been selected.resize
- When window size changes.dragStart
- When carousel dragging begins.dragEnd
- When carousel dragging ends.
off(event, callback)
Ends subscription to a custom Embla event by removing the passed callback. This works for all events listed on the on method.
destroy()
Removes all styles applied to DOM nodes and kills all event listeners for this Embla instance.
Browser Support
-
IE
- 11
-
Edge
- Latest 2 versions
-
Chrome
- Latest 2 versions
-
Firefox
- Latest 2 versions
-
Safari
- Latest 2 versions
Contribution
Thank you to all the people who already contributed to Embla Carousel 🙏!
Do you like this project and want to contribute to it?
I just want to support it
: Thank you! Give it a star maybe ⭐?I want to spread the word
: You're a star! Why not twitter or similar 📣?I want to get my hands dirty
: Awesome! Read the contribution guidelines first 📋.
License
Embla is MIT licensed.
Copyright © 2019-present, David Cetinkaya.