亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

微信小程序的選項卡 并可以禁止手指的左右滑動

標簽:
WebApp
<!-- 课程详情 选项卡 开始-->//html<view class="swiper-tab">
    <view class="swiper-tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="clickTab">全部</view>
    <view class="swiper-tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="clickTab">提现中</view>
    <view class="swiper-tab-item {{currentTab==2?'active':''}}" data-current="2" bindtap="clickTab">已提现</view>
    <view class="swiper-tab-item {{currentTab==3?'active':''}}" data-current="3" bindtap="clickTab">已提现</view></view><!-- 内容转换区 开始 --><swiper class='swiper-box' current="{{currentTab}}" duration="300" bindchange="swiperTab">
    <swiper-item catchtouchmove="stopTouchMove"><view>全部</view></swiper-item>
    <swiper-item catchtouchmove="stopTouchMove"><view>提现中</view></swiper-item>
    <swiper-item catchtouchmove="stopTouchMove"><view>已提现</view></swiper-item>
    <swiper-item catchtouchmove="stopTouchMove"><view>已提现</view></swiper-item>
    </swiper> <!-- 内容转换区 结束 -->//css
.swiper-tab {
   width: 100%;
   text-align: center;
   line-height: 80rpx;
   background-color:white;
   position: fixed;
   top:420rpx;
   left:0rpx;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: nowrap;
 }
.swiper-tab-item{
   width: 25%; 
   font-size: 32rpx;
   color:#434343;
  }
  .active{
     color:#027ee7;
     border-bottom: 3rpx solid #027EE7;
  }
 .swiper-box {
   width:100%;
   height:100%;
   position: fixed;
   top: 504rpx;
   left: 0rpx;
 }

//js
  Page({

 /*页面的初始数据 */
 data: {
   currentTab: 0
 },
 //禁止选项卡的左右滑动 
 stopTouchMove: function () {
   return false;
 },
 // 选项卡转换
 clickTab: function (e) {
   var that = this;
   if (this.data.currentTab === e.target.dataset.current) {
     return false;
   } else {
     that.setData({
       currentTab: e.target.dataset.current
     })
   }
 },



作者:释怀Believemin
链接:https://www.jianshu.com/p/a3507518aaa2


點擊查看更多內容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優質文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學習,寫下你的評論
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

舉報

0/150
提交
取消