当前位置:   article > 正文

React 中使用Swiper轮播_react swiper轮播

react swiper轮播

1. 导入swiper 第三方包

npm i swiper --save

 2. swiper版本号是 8.3.0

 3.导入swiper 相关组件函数

  1. import { Swiper, SwiperSlide } from 'swiper/react'
  2. import { Navigation, Autoplay, Pagination } from 'swiper'

4.Swiper中的引用

  1. <Swiper
  2. spaceBetween={50}
  3. modules={[Autoplay, Navigation, Pagination]}
  4. autoplay={{delay: 2000}}
  5. // navigation
  6. loop
  7. pagination={{ clickable: true }}
  8. onSwiper={swiper => console.log(swiper)}>
  9. {imgs.map(item => (
  10. <SwiperSlide key={item.id}>
  11. <img src={item.img} alt='' />
  12. </SwiperSlide>
  13. ))}
  14. <div className="swiper-pagination"></div>
  15. </Swiper>

5.引入css样式,在index.html中引入css,这里引入的是官方cdn链接

<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css">

6.成功实现轮播效果

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/133942
推荐阅读
相关标签
  

闽ICP备14008679号