Vue.js + vue-awesome-swiper 图片轮播

2017-6-30 Frank JavaScript

[TOC]
"dependencies": {
    "vue": "^2.3.3",
    "vue-awesome-swiper": "^2.5.0",
    "vue-router": "^2.3.1",
    "vue-swiper": "^0.5.0"
  },

1.创建项目

#全局安装 vue-cli
$ npm install --global vue-cli
# 创建一个基于 webpack 模板的新项目
$ vue init webpack shop
# 安装依赖,走你
$ cd shop
$ npm install
$ npm run dev

2.安装vue-awesome-swiper

npm install vue-awesome-swiper --save

3.组件components/Carrousel.vue

<!--Use in SPA 
SPA worked by the component, find swiper instance by ref attribute.-->
<!-- The ref attr used to find the swiper instance -->
<template>
  <swiper :options="swiperOption" ref="mySwiper">
    <!-- slides -->
    <swiper-slide v-for="image in images" :key="image.id">
      <img :src="image"/>
    </swiper-slide>

    <!-- Optional controls -->
    <div class="swiper-pagination"  slot="pagination"></div>
    <div class="swiper-button-prev" slot="button-prev"></div>
    <div class="swiper-button-next" slot="button-next"></div>
    <div class="swiper-scrollbar"   slot="scrollbar"></div>
  </swiper>
</template>

<script>
  // swiper options example:
  import { swiper, swiperSlide } from 'vue-awesome-swiper'

  export default {
    name: 'carrousel',
    data () {
      return {
        images: {
          ds: require('../assets/images/kouhong/ds.jpeg'),
          jg: require('../assets/images/kouhong/jg.jpeg'),
          nj: require('../assets/images/kouhong/nj.jpeg'),
          qz: require('../assets/images/kouhong/qz.jpeg'),
          xx: require('../assets/images/kouhong/xx.jpeg'),
          xy: require('../assets/images/kouhong/xy.jpeg'),
          yh: require('../assets/images/kouhong/yh.jpeg'),
          zh: require('../assets/images/kouhong/zh.jpeg')
        },
        swiperOption: {
          // NotNextTick is a component's own property, and if notNextTick is set to true, the component will not instantiate the swiper through NextTick, which means you can get the swiper object the first time (if you need to use the get swiper object to do what Things, then this property must be true)
          // notNextTick是一个组件自有属性,如果notNextTick设置为true,组件则不会通过NextTick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true
          notNextTick: true,
          // swiper configs 所有的配置同swiper官方api配置
          autoplay: 3000,
          direction: 'horizontal',
          grabCursor: true,
          setWrapperSize: true,
          autoHeight: true,
          pagination: '.swiper-pagination',
          paginationClickable: true,
          prevButton: '.swiper-button-prev',
          nextButton: '.swiper-button-next',
          scrollbar: '.swiper-scrollbar',
          mousewheelControl: true,
          observeParents: true,
          // if you need use plugins in the swiper, you can config in here like this
          // 如果自行设计了插件,那么插件的一些配置相关参数,也应该出现在这个对象中,如下debugger
          debugger: true,
          // swiper callbacks
          // swiper的各种回调函数也可以出现在这个对象中,和swiper官方一样
          onTransitionStart (swiper) {
            // console.log(swiper)
          }
          // more Swiper configs and callbacks...
          // ...
        }
      }
    },
    // you can find current swiper instance object like this, while the notNextTick property value must be true
    // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
    computed: {
      swiper () {
        return this.$refs.mySwiper.swiper
      }
    },
    mounted () {
      // you can use current swiper instance object to do something(swiper methods)
      // 然后你就可以使用当前上下文内的swiper对象去做你想做的事了
      // console.log('this is current swiper instance object', this.swiper)
      this.swiper.slideTo(3, 1000, false)
    },
    components: {
      swiper,
      swiperSlide
    }
  }
</script>

参考
vuejs
vue-awesome-swiper

标签: vue.js

发表评论 登录

Top