在vue中使用swiper插件
程序员文章站
2022-04-12 15:25:03
...
这次给大家带来在vue中使用swiper插件,在vue中使用swiper插件的注意事项有哪些,下面就是实战案例,一起来看一下。
Swiper简介
Swiper常用于移动端网站的内容触摸滑动。
Swiper是纯javascript打造的滑动特效插件,面向手机、平板电脑等移动终端。
Swiper能实现触屏焦点图、触屏Tab切换、触屏多图切换等常用效果。
Swiper开源、免费、稳定、使用简单、功能强大,是架构移动终端网站的重要选择!
解决vue中使用swiper插件,在引入swiper插件后,发现无法正常运行问题
这次我们模拟从后台取下数据,然后数据绑定在swiper标签中。
<template> <p class="homePage"> <abc></abc> <p id="banner"> <p class="swiper-container"> <p class="swiper-wrapper"> <p class="swiper-slide" v-for="items in swiper" ><a href=""><img :src=" rel="external nofollow" items.activity.img"></a></p> </p> <p class="swiper-pagination"></p> </p> </p> </p> </template> <script> import Swiper from "../../static/js/swiper-3.4.0.min.js"; import header from 'components/header.vue'; export default { components : { abc : header }, data(){ return { swiper:"" } }, mounted(){ this.$http.get("http://www.vrserver.applinzi.com/aixianfeng/apihome.php").then(function(res){ this.swiper=res.data.data.slide; var mySwiper = new Swiper('.swiper-container', { autoplay: 2000,//可选选项,自动滑动 //分页器 pagination : '.swiper-pagination', paginationClickable :true, observer: true }) }) } } </script> <style type="text/css"> @import "../../static/css/home.css"; @import "../../static/css/swiper-3.4.0.min.css"; </style>
重点就在mounted()的使用,需要把这些方法都放在 mounted()里使用, mounted()是 vue生命周期钩子 ,你也可以理解为当挂载实例到 DOM完了后,才会触发的而方法。
下面看下swiper在vue中的用法
首先通过npm i vue-awesome-swiper --save
来在vue中下载插件
然后再main.js中引入
require('swiper/dist/css/swiper.css') import VueAwesomeSwiper from 'vue-awesome-swiper' Vue.use(VueAwesomeSwiper)
接着在需要用到的组件里结构中插入代码
<p class="banner"> <swiper :options="swiperOption"> <swiper-slide v-for="items in allData.bannerphoto" key="items"> <img :src="items" alt=""> </swiper-slide> <p class="swiper-pagination" slot="pagination"></p> </swiper> <p class="jc"></p> </p>
然后在data中定义轮播图
swiperOption: { pagination: '.swiper-pagination', paginationClickable: true, autoplay: 2500, autoplayDisableOnInteraction: false, loop: false, coverflow: { rotate: 30, stretch: 10, depth: 60, modifier: 2, slideShadows : true } },
此时的coverflow是轮播图切换的方式 更改属性可切换轮播模式。
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是在vue中使用swiper插件的详细内容,更多请关注其它相关文章!
上一篇: 常用CSS缩写语法总结_CSS/HTML
下一篇: 快速掌握PHP检查语法错误技巧
推荐阅读
-
使用IntelliJ IDEA 2017.2.5 x64中的Spring Initializr插件快速创建Spring Boot/Cloud工程(图解)
-
Android编程实现使用handler在子线程中更新UI示例
-
Vue在 Nuxt.js 中重定向 404 页面的方法
-
使用Vue中 v-for循环列表控制按钮隐藏显示功能
-
在Python中定义和使用抽象类的方法
-
在ASP.NET 2.0中操作数据之四:使用ObjectDataSource展现数据
-
深入浅析Vue 中 ref 的使用
-
vue在index.html中引入静态文件不生效问题及解决方法
-
vue组件化中slot的基本使用方法
-
在ASP.NET 2.0中操作数据之十:使用 GridView和DetailView实现的主/从报表