react-id-swiper
react-id-swiper copied to clipboard
Autoplay doesn't works
I have the following setup and the autoplay doesn't works
https://codesandbox.io/s/reactidswiper-demo-forked-se14h
I'm also facing similar kind of problem
Downgrading swiper to the version below helped me out!
"react-id-swiper": "^4.0.0" "swiper": "^5.3.8
Downgrading made my slide content to disappear for no reason
Guys, I found a solution, in the new version, you need set up which components you will use:
import SwiperCore, { Lazy, Navigation, Autoplay } from 'swiper'
SwiperCore.use([Lazy, Navigation, Autoplay])
Guys, I found a solution, in the new version, you need set up which components you will use:
import SwiperCore, { Lazy, Navigation, Autoplay } from 'swiper' SwiperCore.use([Lazy, Navigation, Autoplay])
Thanks!
Guys, I found a solution, in the new version, you need set up which components you will use:
import SwiperCore, { Lazy, Navigation, Autoplay } from 'swiper' SwiperCore.use([Lazy, Navigation, Autoplay])
it's work