vue中引入Swiper插件实现轮播图自动播放效果。
官网代码地址:https://github.com/surmon-china/vue-awesome-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>
<style>
</style>
4.轮播图实现效果
更多好文敬请关注公众号:main方法
来源:oschina
链接:https://my.oschina.net/u/4007900/blog/4715630