码迷,mamicode.com
首页 > 其他好文 > 详细

小程序选项卡,可左右滑动

时间:2017-12-19 00:59:49      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:发布   html   bind   turn   切换   tab   return   tail   mil   

wxhtml:

<view class="swiper-tab">
  <view class="tab-item swiper-tab-item {{currentTab==0 ? ‘on‘ : ‘‘}}" data-current="0" bindtap="clickTab">我要取专票</view>
  <view class="tab-item swiper-tab-item {{currentTab==1 ? ‘on‘ : ‘‘}}" data-current="1" bindtap="clickTab">我的发布</view>
</view>
 
<swiper current="{{currentTab}}" class="swiper" duration="300" bindchange="bindChange"  style="height:{{currentTab==1?Hei+‘rpx‘:‘100%‘}}">
  <swiper-item>我要取专票内容</swiper-item>
  <swiper-item>我的发布内容</swiper-item>
</swiper>
 
wxss:
 
.swiper-tab {
  width: 100%;
  border-bottom: 2rpx solid #f5f5f5;
  text-align: center;
  height: 100rpx;
  line-height: 100rpx;
  font-size: 30rpx;
}

.swiper-tab-item {
  display: inline-block;
  width: 50%;
  color: #999;
}

.tab-item {
  flex: 1;
  font-size: 30rpx;
  display: inline-block;
  color: #777;
}

.on {
  color: #4ca835;
  border-bottom: 4rpx solid #4ca835;
}

.swiper {
  display: block;
  height: 100%;
  width: 100%;
}
 
js:
 
data: {
  Hei:"",
  currentTab: 0,
}
 
//滑动切换选项卡
bindChange: function (e) {
  var that = this;
  that.setData({ currentTab: e.detail.current });
},
// 点击切换选项卡
clickTab: function (e) {
  var that = this;
  if (this.data.currentTab === e.target.dataset.current) {
    return false;
  }
   else {
    that.setData({
      currentTab: e.target.dataset.current
    })
  }
},
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

小程序选项卡,可左右滑动

标签:发布   html   bind   turn   切换   tab   return   tail   mil   

原文地址:http://www.cnblogs.com/HONGYE1994/p/8058743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!