91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

微信小程序如何實現頂部選項卡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

苍溪县| 策勒县| 汉源县| 长寿区| 松滋市| 剑阁县| 望谟县| 裕民县| 柏乡县| 青阳县| 海城市| 襄汾县| 德钦县| 阳信县| 秭归县| 龙口市| 嘉兴市| 甘南县| 大宁县| 枣强县| 日土县| 宣城市| 加查县| 巩义市| 东丰县| 宝鸡市| 无棣县| 平邑县| 滨州市| 长顺县| 江达县| 日喀则市| 饶阳县| 阳山县| 门源| 桐柏县| 仲巴县| 和平县| 昭平县| 巴东县| 宝山区|