小程序选项卡,可左右滑动

Posted 红叶1994

tags:

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

wxhtml:

<view class="swiper-tab">
  <view class="tab-item swiper-tab-item {{currentTab==0 ? ‘on‘ : ‘‘}}" data-current="0" bindtap="clickTab">我要取专票</view>
  <view class="tab-item swiper-tab-item {{currentTab==1 ? ‘on‘ : ‘‘}}" data-current="1" bindtap="clickTab">我的发布</view>
</view>
 
<swiper current="{{currentTab}}" class="swiper" duration="300" bindchange="bindChange"  style="height:{{currentTab==1?Hei+‘rpx‘:‘100%‘}}">
  <swiper-item>我要取专票内容</swiper-item>
  <swiper-item>我的发布内容</swiper-item>
</swiper>
 
wxss:
 
.swiper-tab {
  width: 100%;
  border-bottom: 2rpx solid #f5f5f5;
  text-align: center;
  height: 100rpx;
  line-height: 100rpx;
  font-size: 30rpx;
}

.swiper-tab-item {
  display: inline-block;
  width: 50%;
  color: #999;
}

.tab-item {
  flex: 1;
  font-size: 30rpx;
  display: inline-block;
  color: #777;
}

.on {
  color: #4ca835;
  border-bottom: 4rpx solid #4ca835;
}

.swiper {
  display: block;
  height: 100%;
  width: 100%;
}
 
js:
 
data: {
  Hei:"",
  currentTab: 0,
}
 
//滑动切换选项卡
bindChange: function (e) {
  var that = this;
  that.setData({ currentTab: e.detail.current });
},
// 点击切换选项卡
clickTab: function (e) {
  var that = this;
  if (this.data.currentTab === e.target.dataset.current) {
    return false;
  }
   else {
    that.setData({
      currentTab: e.target.dataset.current
    })
  }
},
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 




以上是关于小程序选项卡,可左右滑动的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序实现角度或左右滑动触发联动选项卡绝对值事件parsestringifyMathatanabsfindIndex

mui顶部选项卡(可左右滑动)分页跳转

mui中选项卡切换中怎么禁止页面左右滑动

vue实现左右两列竖直分别滑动,且双向关联的选项卡

小程序Swiper做Tab切换,带tab切换动画

微信小程序直播消息滑动