最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

vue-awesome-swiper滑块插件使用方法详解

来源:动视网 责编:小OO 时间:2020-11-27 22:25:02
文档

vue-awesome-swiper滑块插件使用方法详解

本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下:github地址: https://github.com/surmon-china/vue-awesome-swiper.git。1.进入项目目录,安装swiper。npm install vue-awesome-swiper --save。2.引入资源;//vue滑块import VueAwesomeSwiper from 'vue-awesome-swiper'Vue.use(VueAwesomeSwiper)。3.编辑组件;
推荐度:
导读本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下:github地址: https://github.com/surmon-china/vue-awesome-swiper.git。1.进入项目目录,安装swiper。npm install vue-awesome-swiper --save。2.引入资源;//vue滑块import VueAwesomeSwiper from 'vue-awesome-swiper'Vue.use(VueAwesomeSwiper)。3.编辑组件;


本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下

github地址: https://github.com/surmon-china/vue-awesome-swiper.git

1.进入项目目录,安装swiper

npm install vue-awesome-swiper --save

2.引入资源

//vue滑块
import VueAwesomeSwiper from 'vue-awesome-swiper'
Vue.use(VueAwesomeSwiper)

3.编辑组件

<template>
<swiper :options="swiperOption" ref="mySwiper">
 <!-- 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>
import { swiper, swiperSlide } from 'vue-awesome-swiper'
export default {
 name: 'carrousel',
 data() {
 return {
 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 : 'vertical',
 effect:"coverflow",
 grabCursor : true,
 setWrapperSize :true,
 // autoHeight: true,
 // paginationType:"bullets",
 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...
 // ...
 }
 }
 },components: {
 swiper,
 swiperSlide
},
 // 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)
 }
}
</script>

根据官方api进行调整

http://www.swiper.com.cn/api/pagination/2016/0126/299.html

我的git demo可以参考 :https://github.com/ssdpj/mk/tree/vue-admine

文档

vue-awesome-swiper滑块插件使用方法详解

本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下:github地址: https://github.com/surmon-china/vue-awesome-swiper.git。1.进入项目目录,安装swiper。npm install vue-awesome-swiper --save。2.引入资源;//vue滑块import VueAwesomeSwiper from 'vue-awesome-swiper'Vue.use(VueAwesomeSwiper)。3.编辑组件;
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top