wx小程序swiper怎么禁止滑动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wx小程序swiper怎么禁止滑动相关的知识,希望对你有一定的参考价值。

参考技术A .wxml
<view class="swiper-tab">
<view class="swiper-tab-list currentTab==0 ? 'on' : ''" data-current="0" bindtap="swichNav">红色</view>
<view class="swiper-tab-list currentTab==1 ? 'on' : ''" data-current="1" bindtap="swichNav">绿色</view>
<view class="swiper-tab-list currentTab==2 ? 'on' : ''" data-current="2" bindtap="swichNav">黄色</view>本回答被提问者采纳
参考技术B

可以给swiper的父元素的:before / ::after 设置一个透明层,遮罩住。这样就能实现禁止滑动。

.swiper-parent::before 
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    z-index: 1;

以上是关于wx小程序swiper怎么禁止滑动的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序的默认标签汇总

小程序里禁止页面滑动

微信小程序中使用swiper禁止用户上下滑动且不影响外部界面的滑动

小程序swiper指板点样式修改

微信小程序自定义swiper轮播图面板指示点的位置

微信小程序swiper禁止用户手动滑动