您好,欢迎来到欧得旅游网。
搜索
您的当前位置:首页swiper动态改变滑动内容的实现方法

swiper动态改变滑动内容的实现方法

来源:欧得旅游网

假设当前显示的是1,往左滑动一个递减1,往右滑动一个递增1

body下面添加如下代码

<div class="swiper-container temp">
 <div class="swiper-wrapper">
 <div class="swiper-slide">
 1
 </div>
 <div class="swiper-slide">
 2
 </div>
 <div class="swiper-slide">
 3
 </div>
 </div>
</div>

引用swiper的css和js脚本(当前使用的是4.x以上版本)

添加js脚本

var now_ActiveIndex=2;//,//当前所在下标
var tempSwiper = new Swiper('.swiper-container.temp', {
 initialSlide: 1,
 loop:true,
 speed:400,
 on: {
 slideChange: function(swiper){//当当前Slide切换时执行(activeIndex发生改变)
 var pre_number=Number($(this.slides[now_ActiveIndex]).text());
 if(now_ActiveIndex>this.activeIndex){
 if(now_ActiveIndex==4&&this.activeIndex==1){
 $(this.slides[this.activeIndex]).text(pre_number);
 }else{//上一个
 var act_number=pre_number-1;
 $(this.slides[this.activeIndex]).text(act_number);
 }
 }else if(now_ActiveIndex<this.activeIndex){
 if(now_ActiveIndex==0&&this.activeIndex==3){
 $(this.slides[this.activeIndex]).text(pre_number);
 }else{//下一个
 var act_number=pre_number+1;
 $(this.slides[this.activeIndex]).text(act_number);
 }
 }
 now_ActiveIndex=this.activeIndex;
 },
 },
})

初始值:

往左滑动三次:

往右滑动一次

做这个测试主要为了后面日历的左右滑动改变上一月下一月

总结

以上所述是小编给大家介绍的swiper动态改变滑动内容的实现方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

Copyright © 2019- ovod.cn 版权所有 湘ICP备2023023988号-4

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务