最新文章专题视频专题问答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 中swiper的使用教程

来源:动视网 责编:小采 时间:2020-11-27 22:14:06
文档

vue 中swiper的使用教程

vue 中swiper的使用教程:Install 在vue cli下的使用 npm install vue-awesome-swiper --save 在main.js中 import VueAwesomeSwiper from 'vue-awesome-swiper' import 'swiper/dist/css/swiper.css' Vue.use(VueAwesomeSw
推荐度:
导读vue 中swiper的使用教程:Install 在vue cli下的使用 npm install vue-awesome-swiper --save 在main.js中 import VueAwesomeSwiper from 'vue-awesome-swiper' import 'swiper/dist/css/swiper.css' Vue.use(VueAwesomeSw


Install

在vue cli下的使用

npm

install vue-awesome-swiper --save

在main.js中

import VueAwesomeSwiper from 'vue-awesome-swiper'
import 'swiper/dist/css/swiper.css'
Vue.use(VueAwesomeSwiper)

在component.vue中

<template>
<div id="container">
 <swiper :options="swiperOption" ref="mySwiper">
 <swiper-slide class="swiper-slide games">
 <img src="https://www.gxlcms.com/src/assets/LB/LB_07.jpg" ">
 </swiper-slide>
 <swiper-slide class="swiper-slide games">
 <img src="https://www.gxlcms.com/src/assets/LB/LB_06.jpg" ">
 </swiper-slide>
 <swiper-slide class="swiper-slide games">
 <img src="https://www.gxlcms.com/src/assets/LB/LB_05.jpg" ">
 </swiper-slide>
 <swiper-slide class="swiper-slide games">
 <img src="https://www.gxlcms.com/src/assets/LB/LB_04.jpg" ">
 </swiper-slide>
 <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>
 </swiper> 
 </div> 
 </template>
<script>
import { swiper, swiperSlide } from 'vue-awesome-swiper'
 export default {
 name: 'carrousel',
 data () {
 return {
 swiperOption: {
 autoplay : {
 disableOnInteraction: false, //用户操作后是否禁止自动循环
 delay: 3000 //自自动循环时间
 }, //可选选项,自动滑动
 speed: 2000, //切换速度,即slider自动滑动开始到结束的时间(单位ms)
 loop:true, //循环切换
 grabCursor: true, //设置为true时,鼠标覆盖Swiper时指针会变成手掌形状,拖动时指针会变成抓手形状
 // setWrapperSize: true, //Swiper使用flexbox布局(display: flex),开启这个设定会在Wrapper上添加等于slides相加的宽或高,在对flexbox布局的支持不是很好的浏览器中可能需要用到。
 autoHeight: true, //自动高度。设置为true时,wrapper和container会随着当前slide的高度而发生变化。 
 scrollbar: '.swiper-scrollbar',
 mousewheelControl: true, //设置为true时,能使用鼠标滚轮控制slide滑动
 observeParents: true, //当改变swiper的样式(例如隐藏/显示)或者修改swiper的子元素时,自动初始化swiper

 pagination: {
 el: '.swiper-pagination',
 // type : 'progressbar', //分页器形状
 clickable :true, //点击分页器的指示点分页器会控制Swiper切换
 },
 navigation: {
 nextEl: '.swiper-button-next',
 prevEl: '.swiper-button-prev',
 }, 
 },
 computed: {
 swiper() {
 return this.$refs.mySwiper.swiper
 }
 }
 }
 }
}
</script>
<style scoped>
img {
 width: 100%;
 height: auto;
}
</style>

参考:https://github.com/surmon-china/vue-awesome-swiper

https://surmon-china.github.io/vue-awesome-swiper/

总结

以上所述是小编给大家介绍的vue 中swiper的使用教程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

文档

vue 中swiper的使用教程

vue 中swiper的使用教程:Install 在vue cli下的使用 npm install vue-awesome-swiper --save 在main.js中 import VueAwesomeSwiper from 'vue-awesome-swiper' import 'swiper/dist/css/swiper.css' Vue.use(VueAwesomeSw
推荐度:
标签: 方法 VUE 使用方法
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top