• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

小程序选项卡小Demo,可滑动控制

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

思绪
1.选项卡使用scroll-view,实现可以滑动控制效果;
2.使用current控制选项卡标题和内容的统一,实现同步操作;
3.winHeight 这个是我最常用的var calc = clientHeight * rpxR - 440; 440这个值是你所不需要计算的高度值,取决于你除内容之外的高度;
wxml文件

<view class="pinConDet">
  <view class=\'title\'>标题</view>
  <view class=\'con\'>
    <scroll-view scroll-x="true" class="tab-h" scroll-left="{{scrollLeft}}" class=\'tabBox\'>
        <view class="tab-item {{currentTab==0?\'active\':\'\'}}"  data-current="0" bindtap="swichNav">选项1</view>
        <view class="tab-item {{currentTab==1?\'active\':\'\'}}" data-current="1" bindtap="swichNav">选项2</view>    
    </scroll-view>
    <swiper class="tab-content" current="{{currentTab}}" duration="300" bindchange="switchTab"
     style="height:{{winHeight}}rpx">
      <swiper-item>
        <scroll-view scroll-y="true" class="scoll-h" >
          <view class="title1">
            选项卡1内容
          </view>
        </scroll-view>
      </swiper-item>
      <swiper-item>
        <scroll-view scroll-y="true" class="scoll-h" >
          <view class="title1">
            选项卡2内容
          </view>
        </scroll-view>
      </swiper-item>
    </swiper>
  </view>
</view>

wxss文件

.pinConDet{
  padding: 30rpx;
}
.pinConDet .title{
  color: #3491f0;
  font-size: 15px;
  height: 100rpx;
  line-height: 100rpx;
}
.pinConDet .tabBox{
  border-bottom: 1px solid #3491f0;
}
.pinConDet .tab-item{
  font-size: 15px;
  display:inline-block;
  width: 120rpx;
  margin-left: 20rpx;
  background: #e9f2fa;
  color: #3491f0;
  height: 60rpx;
  line-height: 60rpx;
  text-align: center;
}
.pinConDet .active{
  background: #3491f0;
  color: #fff;
}
.tab-content swiper-item view{
  padding: 30rpx;
  font-size: 15px;
}

js文件

var app = getApp()
Page({
  data: {
    winHeight: "",//窗口高度
    currentTab: 0, //预设当前项的值
    scrollLeft: 0, //tab标题的滚动条位置
    showView: false,
    cWayshow: false,
  },
  // 滚动切换标签样式
  switchTab: function (e) {
    this.setData({
      currentTab: e.detail.current
      //获取当前事件current的值;
    });
    this.checkCor();
  },
  // 点击标题切换当前页时改变样式
  swichNav: function (e) {
    var cur = e.target.dataset.current;
    if (this.data.currentTaB == cur) { return false; }
    else {
      this.setData({
        currentTab: cur
      })
    }
  },
  //判断当前滚动超过一屏时,设置tab标题滚动条。
  checkCor: function () {
    if (this.data.currentTab > 4) {
      this.setData({
        scrollLeft: 300
      })
    } else {
      this.setData({
        scrollLeft: 0
      })
    }
  },
  onLoad: function (options) {
    showView: (options.showView == "true" ? true : false);
    cWayshow: (options.showView == "true" ? true : false);
    var that = this;
    //  高度自适应
    wx.getSystemInfo({
      success: function (res) {
        var clientHeight = res.windowHeight,
          clientWidth = res.windowWidth,
          rpxR = 750 / clientWidth;
        console.log(clientHeight)
        var calc = clientHeight * rpxR - 440;
        console.log(calc)
        that.setData({
          winHeight: calc
        });
      }
    });
  }
})

最后实现效果样式呈现

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
微信小程序滚动Tab选项卡:左右可滑动切换发布时间:2022-07-18
下一篇:
微信小程序-滚动Tab选项卡发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap