利用第三方swiper插件實(shí)現(xiàn)輪播功能

我們要使用的輪播插件:



①按照提示安裝插件

npm install vue-awesome-swiper --save

②全局引入插件俱两,在main.js中加入以下內(nèi)容奖蔓。

import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'

// require styles
import 'swiper/dist/css/swiper.css'

Vue.use(VueAwesomeSwiper, /* { default global options } */)

組件中引入插件

// require styles
import 'swiper/dist/css/swiper.css'

import { swiper, swiperSlide } from 'vue-awesome-swiper'

export default {
  components: {
    swiper,
    swiperSlide
  }
}

由于我們?cè)诟鱾€(gè)頁面都可能會(huì)用到輪播插件儒老,因此我們選擇全局使用的方式來引入尺碰。

③插件的使用
Github上給出了插件的不同使用方式:

Difference(使用方法的異同):
SSR and the only difference in the use of the SPA:
· SPA worked by the component, find swiper instance by ref attribute.
· SSR worked by the directive, find swiper instance by directive arg.
· Other configurations, events are the same.

以下為我們會(huì)用到的SPA的使用方式:

<!-- The ref attr used to find the swiper instance -->
<template>
  <swiper :options="swiperOption" ref="mySwiper" @someSwiperEvent="callback">
    <!-- slides -->
    <swiper-slide>I'm Slide 1</swiper-slide>
    <swiper-slide>I'm Slide 2</swiper-slide>
    <swiper-slide>I'm Slide 3</swiper-slide>
    <swiper-slide>I'm Slide 4</swiper-slide>
    <swiper-slide>I'm Slide 5</swiper-slide>
    <swiper-slide>I'm Slide 6</swiper-slide>
    <swiper-slide>I'm Slide 7</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>
  export default {
    name: 'carrousel',
    data() {
      return {
        swiperOption: {
          // some swiper options/callbacks
          // 所有的參數(shù)同 swiper 官方 api 參數(shù)
          // ...
        }
      }
    },
    computed: {
      swiper() {
        return this.$refs.mySwiper.swiper
      }
    },
    mounted() {
      // current swiper instance
      // 然后你就可以使用當(dāng)前上下文內(nèi)的swiper對(duì)象去做你想做的事了
      console.log('this is current swiper instance object', this.swiper)
      this.swiper.slideTo(3, 1000, false)
    }
  }
</script>

按照以上方法德澈,我們新建一個(gè)Swiper.vue文件,并且按照自己的需求進(jìn)行刪減和更改歇攻。

<template>
  <div class="wrapper">
      <swiper :options="swiperOption">
        <!-- slides -->
        <!-- 輪播頁面 簡(jiǎn)單的循環(huán)寫法-->
        <swiper-slide v-for="item of swiperList" :key="item.id">
          <img class='swiper-img' :src="item.imgUrl"/>
        </swiper-slide>
        <!-- Optional controls -->
        <!-- 頁面輪播順序圓點(diǎn) -->
        <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> -->
        <!-- 滾動(dòng)條 -->
        <!-- <div class="swiper-scrollbar"   slot="scrollbar"></div> -->
      </swiper>
    </div>
</template>

<script>
export default{
  name: 'HomeSwiper',
  // 子組件里data是個(gè)函數(shù),返回值是真正數(shù)據(jù)的內(nèi)容
  data(){
    return{
      // 由于swiper綁定了swiperOption,所以必須定義梆造,因此此處返回swiper綁定的數(shù)據(jù)
      swiperOption:{
        pagination: '.swiper-pagination',
        // 使最后一頁和第一頁可以循環(huán)
        loop: true,
      },
    }
  },
  props:{
    swiperList:Array
  }
}
</script>

<style scoped="">

  .wrapper >>> .swiper-pagination-bullet-active{
    background: #fff;
  }
  .swiper-img{
      /*完全顯示圖片*/
      width:100%;
  }
  .wrapper{
    /*防止抖動(dòng)*/
    overflow: hidden;
    width: 100%;
    height:0;
    padding-bottom: 31.25%;
    /*在圖片加載出來之前顯示灰色*/
    background:#eee;
  }

</style>

最后在home.vue中引入swiper這個(gè)組件缴守。

<template>
  <div>
    <home-header></home-header>
    <home-swiper :swiperList="swiperList"></home-swiper>
    <home-icons :iconList="iconList"></home-icons>
    <home-recommend :recommendList="recommendList"></home-recommend>
  </div>
</template>

<script>
import HomeHeader from './Home/components/Header'
import HomeSwiper from './Home/components/Swiper'
import HomeIcons from './Home/components/Icons'
import HomeRecommend from './Home/components/Recommend'
import axios from 'axios'
import { mapState } from 'vuex'

export default{
  name: 'Home',
  components: {
    HomeHeader,
    HomeSwiper,
    HomeIcons,
    HomeRecommend
  },
}
</script>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末镇辉,一起剝皮案震驚了整個(gè)濱河市屡穗,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌忽肛,老刑警劉巖村砂,帶你破解...
    沈念sama閱讀 211,376評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異麻裁,居然都是意外死亡箍镜,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門煎源,熙熙樓的掌柜王于貴愁眉苦臉地迎上來色迂,“玉大人,你說我怎么就攤上這事手销⌒” “怎么了?”我有些...
    開封第一講書人閱讀 156,966評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵锋拖,是天一觀的道長(zhǎng)诈悍。 經(jīng)常有香客問我,道長(zhǎng)兽埃,這世上最難降的妖魔是什么侥钳? 我笑而不...
    開封第一講書人閱讀 56,432評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮柄错,結(jié)果婚禮上舷夺,老公的妹妹穿的比我還像新娘。我一直安慰自己售貌,他們只是感情好给猾,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評(píng)論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著颂跨,像睡著了一般敢伸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上恒削,一...
    開封第一講書人閱讀 49,792評(píng)論 1 290
  • 那天池颈,我揣著相機(jī)與錄音尾序,去河邊找鬼。 笑死饶辙,一個(gè)胖子當(dāng)著我的面吹牛蹲诀,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播弃揽,決...
    沈念sama閱讀 38,933評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼脯爪,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了矿微?” 一聲冷哼從身側(cè)響起痕慢,我...
    開封第一講書人閱讀 37,701評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎涌矢,沒想到半個(gè)月后掖举,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡娜庇,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評(píng)論 2 327
  • 正文 我和宋清朗相戀三年塔次,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片名秀。...
    茶點(diǎn)故事閱讀 38,626評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡励负,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出匕得,到底是詐尸還是另有隱情继榆,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評(píng)論 4 329
  • 正文 年R本政府宣布汁掠,位于F島的核電站略吨,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏考阱。R本人自食惡果不足惜翠忠,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望乞榨。 院中可真熱鬧秽之,春花似錦、人聲如沸姜凄。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽态秧。三九已至,卻和暖如春扼鞋,著一層夾襖步出監(jiān)牢的瞬間申鱼,已是汗流浹背愤诱。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留捐友,地道東北人淫半。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像匣砖,于是被迫代替她去往敵國(guó)和親科吭。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容