我是靠谱客的博主 多情白羊,最近开发中收集的这篇文章主要介绍vue插件之vue-awesome-swiper轮播之全屏滚动,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.安装vue-awesome-swiper

npm install vue-awesome-swiper --save

2.在mian.js文件中引入插件

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

3.html骨架


<swiper :options="swiperOption">
<!-- slides -->
<swiper-slide
v-for="(item,index) in imgslist" :key="index"> <img :src='item.img'/> </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>

4.js部分

<script>
export default {
name:'about',
data(){
return{
swiperOption:{
loop:true,
autoplay:3000,
pagination:'.swiper-pagination',
notNextTick: true, //notNextTick是一个组件自有属性,如果notNextTick设置为true,组件则不会通过NextTick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true
direction: "vertical", //水平方向移动
grabCursor: true, //鼠标覆盖Swiper时指针会变成手掌形状,拖动时指针会变成抓手形状
setWrapperSize: true, //Swiper使用flexbox布局(display: flex),开启这个设定会在Wrapper上添加等于slides相加的宽或高,在对flexbox布局的支持不是很好的浏览器中可能需要用到。
autoHeight: true, //自动高度。设置为true时,wrapper和container会随着当前slide的高度而发生变化
slidesPerView: 1, //设置slider容器能够同时显示的slides数量(carousel模式)。可以设置为数字(可为小数,小数不可loop),或者 'auto'则自动根据slides的宽度来设定数量。loop模式下如果设置为'auto'还需要设置另外一个参数loopedSlides。
mousewheel: true, //开启鼠标滚轮控制Swiper切换。可设置鼠标选项,默认值false
mousewheelControl: true, //同上
height: window.innerHeight, // 高度设置,占满设备高度
resistanceRatio: 0, //抵抗率。边缘抵抗力的大小比例。值越小抵抗越大越难将slide拖离边缘,0时完全无法拖离。本业务需要
observeParents: true, //将observe应用于Swiper的父元素。当Swiper的父元素变化时,例如window.resize,Swiper更新
autoplayDisableOnInteraction: false //鼠标划过之后继续轮播
},
imgslist:[
{id:1,img:'/Wyy/1.jpg'},
{id:2,img:'/Wyy/2.jpg'},
{id:3,img:'/Wyy/3.jpg'},
{id:4,img:'/Wyy/4.jpg'},
{id:5,img:'/Wyy/5.jpg'},
{id:6,img:'/Wyy/6.jpg'},
{id:7,img:'/Wyy/7.jpg'},
]
}
}
}
</script>

5.样式

<style lang="stylus">
.about
.swiper-pagination-bullet-active
background-color
#FFF
img
width 100%
height 100%
</style>

最后

以上就是多情白羊为你收集整理的vue插件之vue-awesome-swiper轮播之全屏滚动的全部内容,希望文章能够帮你解决vue插件之vue-awesome-swiper轮播之全屏滚动所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部