admin管理员组文章数量:1344556
I want to set the index of the swiper's active slide to the center position? As you can see in picture the active index is set to 0, I want it be number 3, i.e: middle and it should remain middle
<Swiper
grabCursor={true}
spaceBetween={10}
modules={[Navigation, Thumbs]}
slidesPerView={7}
// activeSlideKey={3}
slideActiveClass={styles.activeSlider}
>
{options.map((option) => () => <SwiperSlide key={option}>{option}</SwiperSlide>)}
</Swiper>
activeSlideKey is just for reference. It does not work.
I want to set the index of the swiper's active slide to the center position? As you can see in picture the active index is set to 0, I want it be number 3, i.e: middle and it should remain middle
<Swiper
grabCursor={true}
spaceBetween={10}
modules={[Navigation, Thumbs]}
slidesPerView={7}
// activeSlideKey={3}
slideActiveClass={styles.activeSlider}
>
{options.map((option) => () => <SwiperSlide key={option}>{option}</SwiperSlide>)}
</Swiper>
activeSlideKey is just for reference. It does not work.
Share Improve this question asked Mar 25, 2022 at 17:09 Farooq AliFarooq Ali 491 gold badge1 silver badge6 bronze badges2 Answers
Reset to default 10Very simple.
Use API Parameter initialSlide
(0 == first slide, 1 == second slide and so on) - Index number of initial slide.
https://swiperjs./swiper-api#param-initialSlide
<Swiper
initialSlide="3"
navigation={true}
modules={[Navigation]}
className="mySwiper"
>
Combine if you want with centeredSlides ={true}
& loop={true}
.
Centered demo: https://swiperjs./demos#centered
<Swiper
centeredSlides ={true}
>
...
</Swiper>
本文标签: javascriptHow to set initial active slide to different index in swiperjs ReactJSStack Overflow
版权声明:本文标题:javascript - How to set initial active slide to different index in swiperjs ReactJS? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799310a2541013.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论