如何在VUE中使用vue-awesome-swiper


Posted in Vue.js onJanuary 04, 2021

一:首先进入项目目录中安装

install vue-awesome-swiper@2.6.7 --save

二.使用

全局挂载:

import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'
// require styles
import 'swiper/dist/css/swiper.css'

Vue.use(VueAwesomeSwiper, /* { default global options } */)

组件挂载

// require styles
import 'swiper/dist/css/swiper.css'
import { swiper, swiperSlide } from 'vue-awesome-swiper'
export default {
 components: {
 swiper,
 swiperSlide
 }
}

新建一个.vue文件,按照以下代码模式

<template>
 <div class="index">
 <Top navLeft="true" title="轮播图" navRight="false"></Top>
  <div style="padding-top: 1.3rem;padding-left:0.2rem">
   <swiper id="mySwiper" :options="swiperOption" ref="mySwiper" v-if="swiperList.length!=0">
   <swiper-slide class="swiper-item" v-for='(item,index) of swiperList' :key='item.id' >
     <img class='swiper-img' :src='item.imgUrl' alt="门票" @click="swiperClick(index,item.linkUrl)" />
   </swiper-slide>
   <div class="swiper-pagination" slot="pagination"></div>
  </swiper>
 </div>
 </div>
</template>
<script>
import Top from '@/components/public/Top';
import 'swiper/dist/css/swiper.css';
import { swiper, swiperSlide } from 'vue-awesome-swiper'
export default {
 name: 'Swiper',
 components: {Top,swiper,swiperSlide},
 data() {
  return {
  swiperList:[],
  swiperOption: {
   pagination: ".swiper-pagination",
   initialSlide: 0,//默认第几张
   loop:true, //循环
   autoplayDisableOnInteraction:false,//触摸后再次自动轮播
   autoplay:2000, //每张播放时长3秒,自动播放
   speed:1000,//滑动速度
  }
  }
 },
 created(){
 this.initEvent(); 
 console.log(this.$refs.mySwiper);
 this.swiperOption.autoplay = this.swiperList.length != 1 ? 2000 : false;//如果是一张图片不轮播

 
 },
 
 computed: {
  swiper() {
   return this.$refs.mySwiper.swiper//组件实例
  }
 },
 mounted(){ 
  
 },
 methods: {
 initEvent:function(){
  this.$http.get("http://localhost/swiper")
  .then(res=>{
   this.swiperList=res.data.swiperList;
  })
  .catch(error=>{
   console.log(error)
  })
 },
 swiperClick:function(index,url){
  console.log(index);
  this.$router.push(url)
 }
 }
}
</script>

<style scoped>
@import "../assets/public/css/bottom.css";
@import "../assets/css/index/my.css";
#mySwiper >>> .swiper-pagination-bullet {
 background: #000000;
}
#mySwiper >>> .swiper-pagination-bullet-active {
 background: #ff0000;
}
</style>

页面展示如下

如何在VUE中使用vue-awesome-swiper

三:在使用过程中遇到的问题

1.触摸后再次自动轮播问题,添加以下属性就可以再次轮播

autoplayDisableOnInteraction:false

2.样式穿透问题,修改圆点的样式问题

  解决方案是给swiper容器添加上ID,然后再在后面添加>>>,这样就可以解决了

#mySwiper >>> .swiper-pagination-bullet {
 background: #000000;
}
#mySwiper >>> .swiper-pagination-bullet-active {
 background: #ff0000;
}

3.解决如果只有一张图片不轮播问题

以上就是如何在VUE中使用vue-awesome-swiper的详细内容,更多关于VUE中使用vue-awesome-swiper的资料请关注三水点靠木其它相关文章!

Vue.js 相关文章推荐
详解vue中使用transition和animation的实例代码
Dec 12 Vue.js
Vue 组件注册全解析
Dec 17 Vue.js
Vue中强制组件重新渲染的正确方法
Jan 03 Vue.js
详解为什么Vue中的v-if和v-for不建议一起用
Jan 13 Vue.js
vue 递归组件的简单使用示例
Jan 14 Vue.js
Vue实现简单计算器
Jan 20 Vue.js
vue3.0 项目搭建和使用流程
Mar 04 Vue.js
vue3.0封装轮播图组件的步骤
Mar 04 Vue.js
vue使用v-model进行跨组件绑定的基本实现方法
Apr 28 Vue.js
vue+spring boot实现校验码功能
May 27 Vue.js
springboot+VUE实现登录注册
May 27 Vue.js
vue实力踩坑之push当前页无效
Apr 10 Vue.js
vue项目如何监听localStorage或sessionStorage的变化
Jan 04 #Vue.js
手写Vue源码之数据劫持示例详解
Jan 04 #Vue.js
vue+vant 上传图片需要注意的地方
Jan 03 #Vue.js
vue调用微信JSDK 扫一扫,相册等需要注意的事项
Jan 03 #Vue.js
vue中使用echarts的示例
Jan 03 #Vue.js
vue 动态生成拓扑图的示例
Jan 03 #Vue.js
Vue中强制组件重新渲染的正确方法
Jan 03 #Vue.js
You might like
解决ajax+php中文乱码的方法详解
2013/06/09 PHP
PHP实现的曲线统计图表示例
2016/11/10 PHP
php中序列化与反序列化详解
2017/02/13 PHP
HTML Dom与Css控制方法
2010/10/25 Javascript
autoIMG 基于jquery的图片自适应插件代码
2011/03/12 Javascript
JavaScript实现点击按钮后变灰避免多次重复提交
2013/07/15 Javascript
如何将php数组或者对象传递给javascript
2014/03/20 Javascript
基于jquery ui的alert,confirm方案(支持换肤)
2015/04/03 Javascript
jquery 中ajax执行的优先级
2015/06/22 Javascript
js采用concat和sort将N个数组拼接起来的方法
2016/01/21 Javascript
JS获取复选框的值,并传递到后台的实现方法
2016/05/30 Javascript
jQuery获取table表中的td标签(实例讲解)
2017/07/28 jQuery
layui table去掉右侧滑动条的实现方法
2019/09/05 Javascript
vue实现全匹配搜索列表内容
2019/09/26 Javascript
Layui实现数据表格默认全部显示(不要分页)
2019/10/26 Javascript
vue实现带过渡效果的下拉菜单功能
2020/02/19 Javascript
使用JavaScript通过前端发送电子邮件
2020/05/22 Javascript
JavaScript实现简单验证码
2020/08/24 Javascript
用smtplib和email封装python发送邮件模块类分享
2014/02/17 Python
python爬虫_实现校园网自动重连脚本的教程
2018/04/22 Python
Python实现字符串的逆序 C++字符串逆序算法
2020/05/28 Python
Django csrf 验证问题的实现
2018/10/09 Python
django主动抛出403异常的方法详解
2019/01/04 Python
django 使用 PIL 压缩图片的例子
2019/08/16 Python
Python QT组件库qtwidgets的使用
2020/11/02 Python
Python实现自动整理文件的脚本
2020/12/17 Python
SmartBuyGlasses荷兰:购买太阳镜和眼镜
2020/03/16 全球购物
Java里面Pass by value和Pass by Reference是什么意思
2016/05/02 面试题
送货司机岗位职责
2013/12/11 职场文书
保密承诺书范文
2014/03/27 职场文书
教师党员个人总结
2015/02/10 职场文书
学期个人工作总结
2015/02/13 职场文书
2015年度校学生会工作总结报告
2015/05/23 职场文书
北京爱情故事观后感
2015/06/12 职场文书
餐厅开业活动方案
2019/07/08 职场文书
PostgreSQL聚合函数介绍以及分组和排序
2022/04/12 PostgreSQL