react swiper 基本使用指南 (长期更新案例代码,也可以联系提供代码)

swiper 版本非常多,所以如果大家引入的资源如果报错或者找不着,那么必定是版本不对啦。

官网案例,如果找不到模块,那么就是版本不对的坑了。自己去node_module里面去看看文件是否存在。

安装 npm i swiper
案例安装的版本号是 "swiper": "^8.0.7",


import { Navigation, Pagination, Scrollbar, A11y } from 'swiper';
import 'swiper/css';
import 'swiper/css/navigation';
import 'swiper/css/pagination';
import 'swiper/css/scrollbar';
export default () => {
  return (
    <Swiper
      // install Swiper modules
      modules={[Navigation, Pagination, Scrollbar, A11y]}
      spaceBetween={50}
      slidesPerView={3}
      navigation
      pagination={{ clickable: true }}
      scrollbar={{ draggable: true }}
      onSwiper={(swiper) => console.log(swiper)}
      onSlideChange={() => console.log('slide change')}
    >
      <SwiperSlide>Slide 1</SwiperSlide>
      <SwiperSlide>Slide 2</SwiperSlide>
      <SwiperSlide>Slide 3</SwiperSlide>
      <SwiperSlide>Slide 4</SwiperSlide>
      ...
    </Swiper>
  );
};

swiper react 官方文档。

api简单介绍

spaceBetween:间距;slidesPerView:展示几个滑块;onSlideChange滑动监听;
Navigation:就是左右两个耳朵,加了这个属性就会有样式,在modules对象数组里添加Navigation,会绑定事件和方法,控制左右切换。
pagination:就是下面的小圆点指示器,同理添加这个属性和对应的css,就会有样式出现,添加到modules对象数组里面就会绑定方法。
这里就是简单的介绍了,我用的swiper版本是8.0,react要16.8,有hooks的就行。
=========================================================

案例一 EffectCoverflow使用特效。

1650786959(1).jpg
// Import Swiper React components
import { Swiper, SwiperSlide } from "swiper/react"
import { Navigation, Pagination, EffectCoverflow, Autoplay } from "swiper"
// Import Swiper styles
import "swiper/css"
import "swiper/scss/navigation"
import "swiper/scss/pagination"
import "swiper/scss/effect-fade"
import styles from "./swiperComBox.module.scss"
// Navigation
export const SwiperComp = (props) => {
  return (
    <Swiper
      modules={[Navigation, Pagination, EffectCoverflow, Autoplay]}
      spaceBetween={50}
      autoplay={{
        delay: 2500,
        disableOnInteraction: false,
      }}
      slidesPerView={3}
      navigation
      pagination={{ clickable: true }}
      onSlideChange={() => {}}
      onSwiper={(swiper) => console.log(swiper)}
      className={styles.swiper}
      effect={"coverflow"}
      coverflowEffect={{
        rotate: 60,
        stretch: 1,
        depth: 20,
        modifier: 1,
        slideShadows: true,
      }}
    >
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
      <SwiperSlide className={styles.slide}>
        <img src={props.imgList[0]} alt=""></img>
      </SwiperSlide>
    </Swiper>
  )
}


引入样式文件
import styles from "./swiperComBox.module.scss"

.swiper {
  width: 80%;
  padding: 10%;
  .slide {
    img {
      width: 100%;
    }
  }
}

使用组件

import {SwiperComp} from "../../components/swiperComBox/swiperComBox"
//这里引用的路径自己写自己的,然后组件的使用也自己放到对应的地方  
//这里imgList属性是自己定义的props  图片路径也自己引入就可以展示了。
<SwiperComp imgList={[yitong.yitonghaoka]}></SwiperComp>

案例二 基础使用 Navigation Pagination

1650772353(1).jpg
// Import Swiper React components
import { Swiper, SwiperSlide } from "swiper/react"
import { Navigation, Pagination } from "swiper"
import utils from "@/util"
import "./videoSwiper.scss"
// Import Swiper styles
import "swiper/css"
import "swiper/scss/navigation"
import "swiper/scss/pagination"
import "swiper/scss/effect-fade"

export  const SwiperComp = (props) => {
  const ClickVideo = (url) => {
    if (url) {
      setUrl(url)
    }
  }
  const { setUrl } = props
  const list = [
    { img: "", url: "https://musclefeel.oss-cn-beijing.aliyuncs.com/testDemo/demo.m3u8" },
    { img: "", url: "https://musclefeel.oss-cn-beijing.aliyuncs.com/video/2022-02-27/output2022_/output2022_.m3u8" },
    { img: "", url: "" },
    { img: "", url: "" },
    { img: "", url: "" },
    { img: "", url: "" },
    { img: "", url: "" },
  ]

  return (
    <Swiper modules={[Navigation, Pagination]} spaceBetween={60} slidesPerView={4} navigation pagination={{ clickable: true }} onSlideChange={() => console.log("slide change")} onSwiper={(swiper) => console.log(swiper)} className="swiper">
      {list.map((item, index) => {
        return (
          <SwiperSlide className="slide" onClick={()=>{
            ClickVideo(item.url)
          }} key={index}>
            <img src={props.imgList[0]} alt=""></img>
          </SwiperSlide>
        )
      })}
    </Swiper>
  )
}

上面的视频是用了Dpalyer 流媒体m3u8,有兴趣了解的可以私聊我。
具体的功能案例有地址,多看文档吧。

案例三

还没写。。
官网文档案例地址
再次注意,modules 里面要添加,属性要添加,引入要引入。有问题可以联系我~hhh

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,012评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,628评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,653评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,485评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,574评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,590评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,596评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,340评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,794评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,102评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,276评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,940评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,583评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,201评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,441评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,173评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,136评论 2 352

推荐阅读更多精彩内容