亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序如何實現頂部選項卡swiper

發布時間:2021-01-28 15:09:24 來源:億速云 閱讀:175 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關微信小程序如何實現頂部選項卡swiper的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

效果圖:

微信小程序如何實現頂部選項卡swiper

下面直接上代碼:

wxml:

<!--pages/index/index.wxml--> 
<view class="swiper-tab"> 
 <view class="tab-item {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav">選項一</view> 
 <view class="tab-item {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav">選項二</view> 
 <view class="tab-item {{currentTab==2 ? 'on' : ''}}" data-current="2" bindtap="swichNav">選項三</view> 
</view> 
 
<swiper current="{{currentTab}}" class="swiper" duration="300" style="height:{{winHeight - 30}}px" bindchange="bindChange"> 
 <swiper-item> 
  <view>頁面一</view> 
 </swiper-item> 
 <swiper-item> 
  <view>頁面二</view> 
 </swiper-item> 
 <swiper-item> 
  <view>頁面三</view> 
 </swiper-item> 
</swiper>

wxss:

/* pages/index/index.wxss */ 
.swiper-tab{ 
 width: 100%; 
 text-align: center; 
 line-height: 80rpx; 
 border-bottom: 1px solid #000; 
 display: flex; 
 flex-direction: row; 
 justify-content: center; 
} 
.tab-item{ 
 flex: 1; 
 font-size: 30rpx; 
 display: inline-block;  
 color: #777777; 
} 
.on{ 
 color: red; 
 border-bottom: 5rpx solid red; 
} 
.swiper{ display: block; height: 100%; width: 100%; overflow: hidden; } 
.swiper view{ 
 text-align: center; 
 padding-top: 100rpx; 
}

js:

// pages/index/index.js 
Page({ 
 
 /** 
  * 頁面的初始數據 
  */ 
 data: { 
  winWidth:0, 
  winHeight:0, 
  currentTab:0 
 }, 
 
 /** 
  * 生命周期函數--監聽頁面加載 
  */ 
 onLoad: function (options) { 
  var that = this; 
 
  /** 
   * 獲取系統信息 
   */ 
  wx.getSystemInfo({ 
 
   success: function (res) { 
    that.setData({ 
     winWidth: res.windowWidth, 
     winHeight: res.windowHeight 
    }); 
   } 
 
  }); 
 }, 
 bindChange: function (e) { 
 
  var that = this; 
  that.setData({ currentTab: e.detail.current }); 
 
 }, 
 swichNav: function (e) { 
 
  var that = this; 
 
  if (this.data.currentTab === e.target.dataset.current) { 
   return false; 
  } else { 
   that.setData({ 
    currentTab: e.target.dataset.current 
   }) 
  } 
 } , 
 /** 
  * 頁面相關事件處理函數--監聽用戶下拉動作 
  */ 
 onPullDownRefresh: function () { 
 
 }, 
 
 /** 
  * 頁面上拉觸底事件的處理函數 
  */ 
 onReachBottom: function () { 
 
 }, 
 
 /** 
  * 用戶點擊右上角分享 
  */ 
 onShareAppMessage: function () { 
 
 } 
})

感謝各位的閱讀!關于“微信小程序如何實現頂部選項卡swiper”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临西县| 梧州市| 长宁区| 辽阳县| 平南县| 茂名市| 隆化县| 阳曲县| 固安县| 长海县| 房产| 大丰市| 陵川县| 志丹县| 五指山市| 洛南县| 五大连池市| 金平| 休宁县| 遂溪县| 英德市| 琼结县| 宝坻区| 灵川县| 铜鼓县| 大新县| 河西区| 阿城市| 阿尔山市| 监利县| 临颍县| 隆子县| 井研县| 玛曲县| 广汉市| 万宁市| 贵港市| 博野县| 宜章县| 商河县| 兴文县|