中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

小程序實現頁面頂部選項卡效果

發布時間:2020-10-05 13:09:41 來源:腳本之家 閱讀:173 作者:jackie_bobo 欄目:web開發

本文實例為大家分享了小程序實現選項卡效果的具體代碼,供大家參考,具體內容如下

效果圖:

小程序實現頁面頂部選項卡效果

github源碼下載

<!--index.wxml--> 
<view class="swiper-tab" > 
  <view bindtap="swithNav" wx:for="{{tabCont}}" wx:key="item.index" class="swiper-tab-list {{currentTab==item.index?'active':''}}" data-current='{{item.index}}' >{{item.title}}</view> 
</view> 
<swiper class="swiper-box" current="{{currentTab}}" duration="300"  bindchange="GetCurrentTab" data-current='6' > 
  <swiper-item wx:for="{{tabCont}}" wx:key="item.index"> 
   <image src='{{item.pic}}'></image>
   <view>{{item.title}}</view>
  </swiper-item> 
</swiper> 

CSS:

/**index.wxss**/

/**index.wxss**/

.swiper-tab {
 line-height: 80rpx;
 border: 1px solid #ccc;
 display: flex;
 justify-content: space-around;
 align-items: center;
}

.swiper-tab-list {
 font-size: 30rpx;
 color: #777;
 text-align: center;
}

.active {
 color: #da7c0c;
 border-bottom: 5rpx solid #da7c0c;
}

.swiper-box {
 display: block;
 height: 100%;
 width: 100%;
 overflow: hidden;
}

.swiper-box view {
 text-align: center;
}

image {
 width: 100%;
}

js:

Page({

 /**
  * 頁面的初始數據
  */
 data: {
  currentTab:0,
  tabCont: [{ "title": "tab1", "pic": "../../img/1.jpg", "index": "0" }, { "title": "tab2", "pic": "../../img/2.jpg", "index": "1" }, { "title": "tab3", "pic": "../../img/3.jpg", "index": "2" }, { "title": "tab4", "pic": "../../img/2.jpg", "index": "3" }, { "title": "tab5", "pic": "../../img/2.jpg", "index": "4" }, { "title": "tab6", "pic": "../../img/2.jpg", "index": "5" }, { "title": "tab7", "pic": "../../img/2.jpg", "index": "6" }, { "title": "tab8", "pic": "../../img/2.jpg", "index": "7" }, { "title": "tab9", "pic": "../../img/2.jpg", "index": "8" }],
 },

 /**
  * 生命周期函數--監聽頁面加載
  */
 onLoad: function (options) {

 },

 /**
  * 生命周期函數--監聽頁面初次渲染完成
  */
 onReady: function () {

 },

 /**
  * 生命周期函數--監聽頁面顯示
  */
 onShow: function () {

 },

 /**
  * 生命周期函數--監聽頁面隱藏
  */
 onHide: function () {

 },

 /**
  * 生命周期函數--監聽頁面卸載
  */
 onUnload: function () {

 },

 /**
  * 頁面相關事件處理函數--監聽用戶下拉動作
  */
 onPullDownRefresh: function () {

 },

 /**
  * 頁面上拉觸底事件的處理函數
  */
 onReachBottom: function () {

 },

 /**
  * 用戶點擊右上角分享
  */
 onShareAppMessage: function () {

 },
 // swiper滑動時觸發bindchange事件,獲取事件對象e獲取當前所在滑塊的 index,并將其更新至data的currentTab中,視圖渲染通過判斷currentTab的讓對應的tab hover。
 GetCurrentTab:function(e){
  console.log(e.detail.current);
  var that = this;
  this.setData({
   currentTab:e.detail.current
  });
  // console.log("11111"+this.data.currentTab);
 },
 swithNav:function(e){
  var that = this;
  that.setData({
   currentTab:e.target.dataset.current
  });

 }
})

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

向AI問一下細節

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

AI

永康市| 松江区| 舟山市| 宾川县| 惠州市| 江门市| 大余县| 沿河| 金坛市| 利川市| 彰化市| 花垣县| 盐山县| 河池市| 固原市| 通许县| 灌南县| 加查县| 临漳县| 调兵山市| 宁陵县| 呈贡县| 西安市| 克拉玛依市| 广水市| 潞城市| 江西省| 平远县| 湾仔区| 喜德县| 桐庐县| 克东县| 都兰县| 万源市| 永修县| 达日县| 安远县| 延川县| 宝坻区| 衡山县| 西畴县|