用Vue封装Swiper实现图片轮播很简单

图片轮播是前端中常常须要实现的一个功能。最近学习Vue.js,就针对Swiper进行封装,实现一个简单的图片轮播组件。css

1、Swiper

在实现封装以前,先介绍一下Swiper。html

  • Swiper是纯Javascript打造的滑动特效插件,面向手机、平板电脑等移动终端。前端

  • Swiper能实现触屏焦点图、触屏Tab切换、触屏多图切换等经常使用效果。vue

  • Swiper开源、免费、稳定、使用简单、功能强大,是架构移动终端网站的重要选择。git

Swiper的应用场景普遍,实现效果很好,下面个这实际案例就是Swiper的典型应用场景。github

Swiper的具体使用教程及详细API,参考Swiper中文网npm

2、Vue组件

Vue组件设计初衷就是要配合使用的,提升维护性和复用性。而图片轮播正适合使用组件来完成,所以在介绍具体的实现以前,先介绍下关于Vue组件及组件通讯。api

Vue组件中最多见的就是造成父子组件的关系:组件 A 在它的模板中使用了组件 B。bash

它们之间必然须要相互通讯:父组件可能要给子组件下发数据,子组件则可能要将它内部发生的事情告知父组件。然而,经过一个良好定义的接口来尽量将父子组件解耦也是很重要的。这保证了每一个组件的代码能够在相对隔离的环境中书写和理解,从而提升了其可维护性和复用性。网络

在 Vue 中,父子组件的关系能够总结为 prop 向下传递,事件向上传递。父组件经过 prop 给子组件下发数据,子组件经过事件给父组件发送消息。

3、封装实现

1.引入Swiper

首先,须要安装Swiper。

npm install --save swiper
复制代码

而后,要引用两个文件。

import Swiper from "swiper";
import "swiper/dist/css/swiper.min.css";
复制代码

2.HTML代码

在模板中设置轮播图的html布局。

<template>
  <div class="swiper-container" :class="swipeid">
      <div class="swiper-wrapper">
          <!-- 存放具体的轮播内容 -->
          <slot name ="swiper-con"></slot>
      </div>
      <!-- 分页器 -->
      <div :class="{'swiper-pagination':pagination}"></div>
  </div>
</template>
复制代码

其中使用具名插槽,提升解耦,使得在父组件使用时,根据不一样状况,设置不一样的轮播内容。

另外须要设置分页器,即图片轮播中的页面指示器,常见的如小圆点,或者数字指示器。

3.初始化Swiper

既然是对Swiper进行封装实现轮播图,前面也已经安装了Swiper,那么如今就须要初始化使用。

在初始化以前,根据Swiper用法的了解,先肯定轮播组件须要的属性信息,而后经过父组件传递给封装的Swiper组件。

这时候就须要用到props。

props: {
    swipeid: {
      type: String,
      default: ""
    },
    effect: {
      type: String,
      default: "slide"
    },
    loop: {
      type: Boolean,
      default: false
    },
    direction: {
      type: String,
      default: "horizontal"
    },
    pagination: {
      type: Boolean,
      default: true
    },
    paginationType: {
      type: String,
      default: "bullets"
    },
    autoPlay: {
      type: Number,
      default: 3000
    }
  }
复制代码

下面逐一解释每一个属性的含义。

属性 含义
swiped 轮播容器class属性的类名。
effect 图片的 切换效果,默认为"slide",还可设置为"fade", "cube", "coverflow","flip",详情见effect
loop 设置为true 则开启loop模式。loop模式:会在本来图片先后复制若干个图片并在合适的时候切换,让Swiper看起来是循环的,详情见loop
direction 图片的滑动方向,可设置水平(horizontal)或垂直(vertical),详情见direction
pagination 使用分页导航,详情见pagination
paginationType 分页器样式类型,可设置为"bullets", "fraction", "progressbar", "custom",详情见type
autoPlay 设置为true启动自动切换,并使用默认的切换设置,详情见autoplay

了解了上面每一个属性的含义,下面就能够初始化Swiper,并设置具体的属性。

初始化Swiper时,须要传入两个参数。

  • 轮播容器的类名
  • 表明图片轮播组件详细功能的对象
var that = this;
    this.dom = new Swiper("." + that.swipeid, {
      //循环
      loop: that.loop,
      //分页器
      pagination: { 
        el: ".swiper-pagination",
        bulletClass : 'swiper-pagination-bullet',
            },
      //分页类型
      paginationType: that.paginationType,
      //自动播放
      autoPlay: that.autoPlay,
      //方向
      direction: that.direction,
      //特效
      effect: that.effect,
      //用户操做swiper以后,不由止autoplay
      disableOnInteraction: false,
      //修改swiper本身或子元素时,自动初始化swiper
      observer: true,
      //修改swiper的父元素时,自动初始化swiper
      observeParents: true
    });
  }
复制代码

4、自定义轮播效果

通过上面的步骤,轮播器就封装好了。咱们能够自定义实现本身想要的轮播器效果。下面以知乎的API为例,实现图片轮播。

1.HTML代码

<m-swipe swipeid="swipe" ref="swiper" :autoPlay="3000" effect="slide">
      <div v-for="top in tops" :key="top.id" class="swiper-slide" slot="swiper-con" >
        <img :src="top.image">
        <h3>{{top.title}}</h3>
      </div>
</m-swipe>
复制代码

首先要引用注册组件,这里就不详细写出。

其中m-swipe就是前面实现的图片轮播组件,而其中的子组件就是经过具名插槽插入的轮播内容。

2.CSS代码

.swiper-container {
    width: 100%;
  }
  .swiper-slide {
    height: 8rem;
    overflow: hidden;
    position: relative;
  }
.swiper-slide {
  div {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    position: absolute;
    background-color: @blue;
  }
  img {
    top: 50%;
    position: relative;
    transform: translate(0, -50%);
  }
  h3 {
    width: 70%;
    color: #fff;
    margin: 0;
    font-size: 0.5rem;
    line-height: 1rem;
    right: 5%;
    bottom: 2.6rem;
    text-align: right;
    position: absolute;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    &:before {
      content: "";
      width: 3rem;
      bottom: -0.6rem;
      right: 0;
      display: block;
      position: absolute;
      border: 2px solid @yellow;
    }
  }
}
.swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 1rem;
    width: 95%;
    text-align: right;
  }
复制代码

其中swiper-pagination-bullet-active表明分页器中当前指示的小圆点的类名。swiper-pagination-bullets表明分页器的类名,详情见pagination分页器内元素的类名

关于网络请求数据展现的代码就不贴了,下面有源码地址。

3.效果

这只是一个简单的封装效果,想要实现更多的效果,能够经过Swiper中提供的更多功能来实现。

Github地址: 图片轮播

相关文章
相关标签/搜索