赞
踩
npm i swiper --save
- import { Swiper, SwiperSlide } from 'swiper/react'
- import { Navigation, Autoplay, Pagination } from 'swiper'
- <Swiper
- spaceBetween={50}
- modules={[Autoplay, Navigation, Pagination]}
- autoplay={{delay: 2000}}
- // navigation
- loop
- pagination={{ clickable: true }}
- onSwiper={swiper => console.log(swiper)}>
- {imgs.map(item => (
- <SwiperSlide key={item.id}>
- <img src={item.img} alt='' />
- </SwiperSlide>
- ))}
- <div className="swiper-pagination"></div>
- </Swiper>
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css">
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。