Here are the settings:
{
modules: [Pagination, Navigation],
loop: true,
pagination: {
el: ".swiper-pagination",
type: "bullets",
clickable: true
},
autoplay: {
delay: 1000,
disableOnInteraction: false
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev"
},
spaceBetween: 30,
getSwiper: updateSwiper
}
Here is example https://codesandbox.io/s/r7n2w7vxqp
What I'm doing wrong?
You need to include Autoplay module in modules param to make it work.
Most helpful comment
You need to include
Autoplaymodule inmodulesparam to make it work.