当前位置:   article > 正文

react 使用swiper 横向无限滚动_react swiper typescript 自动滚动

react swiper typescript 自动滚动

安装:

注意:@types/swiper - npm 已废弃

中文官网: Swiper中文网-轮播图幻灯片js插件,H5页面前端开发

1. 新的使用方式

注意:安装此版本 npm install swiper@6.8.4,否则会报错找不到 swiper/react

import { SwiperSwiperSlide } from 'swiper/react';

2. 基础代码

  1. <Swiper
  2. className="mySwiper"
  3. autoplay={{
  4. delay: 100,
  5. disableOnInteraction: false, // 不设置只会轮播一次
  6. pauseOnMouseEnter: true, // 鼠标移入暂停
  7. }}
  8. speed={10000} // 是速度
  9. loop={true} // 无限循环
  10. slidesPerView={12} // 复制个数
  11. centeredSlides={true}
  12. grabCursor={true} 拖动鼠标抓手状态
  13. >
  14. {[1,2,3,4,5,6,7,8,9,10].map((item, index) => (
  15. <SwiperSlide key={index}>Slide {item}</SwiperSlide>
  16. ))}
  17. </Swiper>

处理点

1. 样式引入失败

  1. 改为这样:
  2. // eslint-disable-next-line
  3. import 'swiper/swiper-bundle.css';

2. 无法自动播放

须在开始前文件引入使用Autoplay

  1. 引入:import SwiperCore, { Autoplay } from 'swiper';
  2. 使用:SwiperCore.use([Autoplay]);

3. 每次滑动一次后都会停顿一下,处理

对swiper本身的css样式进行修改, autoplay.delay 设为0(延迟时间,默认 3000)

  1. .swiper-wrapper {
  2. transition-timing-function: linear !important;
  3. }
  4. <Swiper
  5. ...
  6. autoplay={{
  7. ...,
  8. delay: 0
  9. }}
  10. >
  11. ...
  12. </Swiper>

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

闽ICP备14008679号