您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關vue中怎么通過引入Swiper插件實現輪播圖效果,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
1.首先安裝輪播圖插件依賴:
npm install vue-awesome-swiper --save
2.main.js全局引入依賴
import 'swiper/css/swiper.css'import VueAwesomeSwiper from 'vue-awesome-swiper'Vue.use(VueAwesomeSwiper)
3.vue輪播圖頁面代碼
<template>
<div>
<swiper :options="swiperOption">
<swiper-slide v-for="(slide, key) in swiperList" :key="key" >
<div align="center"><img :src="slide" alt=""></div>
</swiper-slide>
<div class="swiper-pagination" slot="pagination"></div>
</swiper>
</div>
</template>
<script>
import { Swiper, SwiperSlide } from 'vue-awesome-swiper'
export default {
name:'work',
components: {
Swiper,
SwiperSlide
},
data(){
return {
swiperList :[
'https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg',
'https://fuss10.elemecdn.com/1/34/19aa98b1fcb2781c4fba33d850549jpeg.jpeg',
'https://fuss10.elemecdn.com/9/bb/e27858e973f5d7d3904835f46abbdjpeg.jpeg',
'https://fuss10.elemecdn.com/d/e6/c4d93a3805b3ce3f323f7974e6f78jpeg.jpeg',
'https://fuss10.elemecdn.com/3/28/bbf893f792f03a54408b3b7a7ebf0jpeg.jpeg',
'https://fuss10.elemecdn.com/2/11/6535bcfb26e4c79b48ddde44f4b6fjpeg.jpeg'
],
swiperOption: {
autoplay: {
disableOnInteraction: false, // 用戶操作swiper之后,是否禁止autoplay
delay: 3000, // 自動切換的時間間隔(單位ms)
},
initialSlide: 0,
loop: true,
pagination: { el: '.swiper-pagination' }, // 分頁按鈕
paginationClickable: true,
onSlideChangeEnd: swiper => {
//console.log('onSlideChangeEnd', swiper.realIndex)
}
}
}
}
}
</script>
看完上述內容,你們對vue中怎么通過引入Swiper插件實現輪播圖效果有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。