Plugins
Embla Carousel accepts an optional plugin array as the thrid argument. Here's a basic example of how to make use of it:
import EmblaCarousel from 'embla-carousel'
import Autoplay from 'embla-carousel-autoplay'
const options = { loop: true }
const plugins = [Autoplay()] // Plugins
const embla = EmblaCarousel(emblaNode, options, plugins)
You can find a complete list of plugins here.
Options
Plugins have their own specific options that allows for configuring the plugin to your liking. Here's how to make use of it:
const autoplayOptions = { delay: 2000 }
const autoplay = Autoplay(autoplayOptions)
Methods
Additionally, some plugins expose their own API methods. You can make use of these by storing the plugin instance in a variable before passing it to the Embla Carousel initialiser:
const autoplay = Autoplay({ delay: 2000 })
const embla = EmblaCarousel(emblaNode, options, [autoplay])
autoplay.play() // Call plugin method
Read more about how to customize your plugin by picking a plugin from this list.