vue-awesome-swiper


github文档:https://github.com/surmon-china/vue-awesome-swiper

使用:

安装:

npm install vue-awesome-swiper --save
单页面应用:

main.js

import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'
Vue.use(VueAwesomeSwiper)
new Vue({
 
}).$mount('#app')

Index.vue

<template lang="html">
      <Banner />
</template>

<script>
	import Banner from './index/Banner';
export default {
	components: {
		Banner,
	},
</script>

<style lang="scss">
	
</style>

Banner.vue

<template>
		<swiper :options="swiperOption" :not-next-tick="notNextTick" ref="mySwiper" class="banner">
			<!-- slides -->
			<swiper-slide v-for="(item,i) in items" :key="i"><img class="banner-img" :src="item" /></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>
	import { swiper, swiperSlide } from 'vue-awesome-swiper'
	require('swiper/dist/css/swiper.css')//注意这里
	
	export default {
		name: 'carrousel',
		data() {
			return {
				items:['/static/img/hxzise.png','/static/img/zzxiaochi.png','/static/img/d5niupai.png'],
				// notNextTick是一个组件自有属性,如果notNextTick设置为true,组件则不会通过NextTick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true
				notNextTick: true,
				swiperOption: {
					// swiper options 所有的配置同swiper官方api配置
					autoplay: 2000,
					direction: 'horizontal',
					loop:true,
					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,
					// 如果自行设计了插件,那么插件的一些配置相关参数,也应该出现在这个对象中,如下debugger
					//debugger: true,
					// swiper的各种回调函数也可以出现在这个对象中,和swiper官方一样
					onTransitionStart(swiper) {
						//console.log(swiper)
					}
					// more Swiper configs and callbacks...
					// ...
				}
			}
		},
		// 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
		computed: {
			swiper() {
				return this.$refs.mySwiper.swiper
			}
		},
		components: {
	    swiper,
	    swiperSlide
	  },
		mounted() {
			// 然后你就可以使用当前上下文内的swiper对象去做你想做的事了
			this.swiper.slideTo(3, 1000, false)
		}
	}
</script>
<style lang="css">
	.swiper-pagination-bullet {
    background: #e5e5e5;
    opacity: 0.8;
    }
    .swiper-pagination-bullet-active {
	    opacity: 1;
	    background: #007aff;
		}
</style>









  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值