基于之前写的vue2.0 + vue-cli + webpack 搭建项目( vue-awesome-swiper版本:3.1.3 ,swiper4,如果成功后没报错,但不显示分页样式,可能版本对不上)

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

  1. npm install vue-awesome-swiper --save

2.引入资源(main.js文件)

  1. import VueAwesomeSwiper from 'vue-awesome-swiper'
  2. Vue.use(VueAwesomeSwiper)

3.编辑组件(HelloWorld.vue文件或其他 .vue文件)

  1. <template>
  2. <swiper :options="swiperOption" ref="mySwiper">
  3. <!-- slides -->
  4. <swiper-slide>I'm Slide 1</swiper-slide>
  5. <swiper-slide>I'm Slide 2</swiper-slide>
  6. <swiper-slide>I'm Slide 3</swiper-slide>
  7. <swiper-slide>I'm Slide 4</swiper-slide>
  8. <swiper-slide>I'm Slide 5</swiper-slide>
  9. <swiper-slide>I'm Slide 6</swiper-slide>
  10. <swiper-slide>I'm Slide 7</swiper-slide>
  11.  
  12. <div class="swiper-pagination" slot="pagination"></div>
  13. <div class="swiper-button-prev" slot="button-prev"></div>
  14. <div class="swiper-button-next" slot="button-next"></div>
  15.  
  16. </swiper>
  17. </template>
  18. <script>
  19. import { swiper, swiperSlide } from 'vue-awesome-swiper'
  20. require('swiper/dist/css/swiper.css')
  21. export default {
  22. name: 'carrousel',
  23. components: {
  24. swiper,
  25. swiperSlide
  26. },
  27. data() {
  28. return {
  29. swiperOption: {
  30.  
  31. notNextTick: true,
  32.  
  33. //循环
  34. loop:true,
  35. //设定初始化时slide的索引
  36. initialSlide:0,
  37.  
  38. //自动播放
  39. autoplay: {
  40. delay: 3000,
  41. //触摸后还可以自动播放
  42. disableOnInteraction: false,
  43. },
  44.  
  45. //滑动速度
  46. speed:400,
  47.  
  48. //水平切换
  49. direction : 'horizontal',
  50.  
  51. //左右点击
  52. navigation: {
  53. nextEl: '.swiper-button-next',
  54. prevEl: '.swiper-button-prev',
  55. },
  56.  
  57. //滑动之后回调函数
  58. on: {
  59. slideChange: function () {
  60. //第几页
  61. console.log(this.activeIndex);
  62. },
  63. },
  64. //分页器设置
  65. pagination: {
  66. el: '.swiper-pagination',
  67. clickable :true,
  68. //自定义类型(至此以下不写是默认圆点样式)
  69. type: 'custom',
  70. //自定义分页器样式
  71. renderCustom: function (swiper, current, total) {
  72. const activeColor = '#555555'
  73. const normalColor = '#aeaeae'
  74. let color = ''
  75. let paginationStyle = ''
  76. let html = ''
  77. for (let i = 1; i <= total; i++) {
  78. if (i === current) {
  79. color = activeColor
  80. } else {
  81. color = normalColor
  82. }
  83. paginationStyle = `background:${color};opacity:1;margin-right:20px;width:20px;height:20px;transform:skew(15deg);border-radius:0;`
  84. html += `<span class="swiper-pagination-bullet" style=${paginationStyle}></span>`
  85. }
  86. return html
  87. }
  88. },
  89.  
  90. }
  91. }
  92. },
  93.  
  94. // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
  95. computed: {
  96. swiper() {
  97. return this.$refs.mySwiper.swiper
  98. }
  99. },
  100. mounted() {
  101.  
  102. // 然后你就可以使用当前上下文内的swiper对象去做你想做的事了
  103. // console.log('this is current swiper instance object', this.swiper)
  104. // this.swiper.slideTo(3, 1000, false)
  105. }
  106. }
  107. </script>
  108.  
  109. <!-- Add "scoped" attribute to limit CSS to this component only -->
  110. <style scoped>
  111. .swiper-container{
  112. height:200px;
  113. overflow: hidden
  114. }
  115. .swiper-wrapper{
  116. height:200px;
  117. }
  118. .swiper-slide{
  119. height:200px;
  120. float: left;
  121. background:red;
  122. }
  123.  
  124. </style>

使用vue-awesome-swiper滑块插件的更多相关文章

  1. 用原生js来写一个swiper滑块插件

        是不是有点印象了,没错,他的最基本的用法就是左右滑动,插件使用者只需要写几行简单的html和js即可实现一个简单滑动效果,不过你完全可以组合各种元素来适应不同的场景. 当然插件我已经写好了,咱 ...

  2. Swiper – 经典的移动触摸滑块插件【免费】

    Swiper 是移动 Web 开发中最常用的滑块插件,是一款免费的,最现代化的移动触摸滑块,支持硬件加速的转换和惊人的原生表现.它的目的是在移动网站,移动 Web 应用程序和 Hygrid 混合应用程 ...

  3. vue自制switch滑块

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  4. vue引入swiper vue使用swiper vue脚手架使用swiper /引入js文件/引入css文件

    vue引入swiper  vue使用swiper  vue脚手架使用swiper /引入js文件/引入css文件 ------------------------------------------- ...

  5. vue添加swiper的正确方式亲测---切图网

    在vue项目中,我们在做图片轮播的方式和传统切图不同,传统切图中我们一般采用非常强大的swiper来完成,而在vue中一般依赖vue-awesome-swiper组件来完成(vue-awesome-s ...

  6. VUE常用UI组件插件及框架

    UI组件及框架 element - 饿了么出品的Vue2的web UI工具套件 mint-ui - Vue 2的移动UI元素 iview - 基于 Vuejs 的开源 UI 组件库 Keen-UI - ...

  7. 分享22款响应式的 jQuery 图片滑块插件

    响应式(Responsive)设计的目标是要让产品界面能够响应用户的行为,根据不同终端设备自动调整尺寸,带给用户良好的使用体验.这篇文章收集了22款优秀的响应式 jQuery 幻灯片插件,它们能够帮助 ...

  8. Glide.js:响应式 & 触摸友好的 jQuery 滑块插件

    Glide.js 是一款响应式和对触摸友好的 jQuery 滑块.基于 CSS3 转换实现,并在低版本浏览器降级处理.Glide.js 简单,重量轻,快速,适用于智能手机,平板电脑和台式机.它支持 s ...

  9. 11个新鲜出炉的jQuery图像滑块插件

    如今图像滑块已成为一种流行的Web设计元素,通过滑块,你可以在有限的页面空间中展示更多的内容,带给用户更佳的浏览体验.本文将为你带来一些非常实用的jQuery图像滑块插件. 1.  Basic Sli ...

  10. 15 个响应式的 jQuery 图像滑块插件

    设计师和开发人员总是试图使用新技术让网站更智能,而我们发现在许多网站上 jQuery 的图像滑块插件是非常受欢迎的.本文继续介绍 15 个 jQuery 图像滑块插件以供您选择. ELASTISLID ...

随机推荐

  1. AtCoder ABC 132F Small Products

    题目链接:https://atcoder.jp/contests/abc132/tasks/abc132_f 题目大意 分析 代码如下

  2. Auto.js淘宝领喵币

    最近,淘宝的新玩法,一直在充斥我的眼球,尤其是喵币的,盖楼... .... 于是就进去看了看,发现逛逛店铺,给好多喵币,但是要进20个,每个要15秒,好麻烦,于是就上网搜了一下,有没有脚本 因为之前搞 ...

  3. 【POJ】1502 MPI Maelstrom

    题目链接:http://poj.org/problem?id=1502 题意:一个处理器给n-1个处理器发送广播,问最短时间.广播时并发,也就是各个路径就大的一方.输入如果是x的话说明两个处理器不能相 ...

  4. YARN设计思路

  5. 【模板篇】k短路 SDOI2010 魔法猪学院

    题目传送门 吐槽时间 题目分析 代码 题目の传送门 都成了一道模板题了OvO ============================================================= ...

  6. js添加节点

    <!DOCTYPE html><html><body><script>var message=document.createTextNode(" ...

  7. python_django_models模块

    django中models模块为各类数据库提供了统一的api,可根据不同的业务需求配置数据库. models模块开发流程: 配置数据库  详情:https://www.cnblogs.com/Vera ...

  8. postman连接不了localhost问题解决

    学习搭建服务器可用postman 连接不了localhost的端口 网上好多教程是这样连接 看完视频后我们是这样 找了大量资料都解决不了,什么版本,什么证书的都不好使,最简单的就是去掉http:// ...

  9. Educational Codeforces Round 27 D. Driving Test

    单调栈 题意看了半天... #include <cstdio> #include <cstdlib> #include <cmath> #include <c ...

  10. Linux CentOS 6.7 挂载U盘

    1. 首先查看U盘是否成功安装fdisk -l 2. 在/mnt下创建U盘目录mkdir /mnt/usb 3. 挂载U盘mount -t vfat /dev/sdb1 /mnt/usb 4. 卸载U ...