国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

微信小程序實現頂部選項卡(swiper)

2019-11-19 15:39:55
字體:
來源:轉載
供稿:網友

微信小程序頂部選項卡在開發中是非常常用的,下面用一點時間實現了一下。

效果圖:

下面直接上代碼:

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 () {   } }) 

以上是實現過程,總體上沒什么難度。可以參考參考。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 镇原县| 大田县| 屏山县| 绥江县| 灌云县| 北流市| 新宁县| 县级市| 西昌市| 桓台县| 陆河县| 绥德县| 天柱县| 桐城市| 台湾省| 池州市| 来安县| 永新县| 庆阳市| 治县。| 耿马| 虹口区| 海宁市| 湖口县| 灵川县| 普宁市| 廉江市| 上饶县| 淮南市| 麻江县| 长宁县| 河曲县| 酒泉市| 乌拉特前旗| 鹤岗市| 察雅县| 迭部县| 天津市| 乌拉特中旗| 兴安盟| 侯马市|