2

最终效果

图片描述

第一种实现(只改变left值)

wxml

<view class='abox'>
    <view wx:for="{{title}}" class='{{currentIndex==index?"tabTrue":""}}'  bindtap='changeTab' data-aa='{{index}}'>
      {{item}}
    
    </view>
    <view class='b' style="left:{{left}}px"></view>
</view>

wxss

.abox{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  position: relative;
  padding-bottom: 20rpx;
}

.tabTrue{
  color: red;
}
.b{
  background: red;
  height: 4rpx;
  width:64rpx;
  position: absolute;
  bottom: 0;
  transition: all .3s linear;
}

js

Page({
  data: {
    title: ["首页","掘金","思否","知乎"],
    currentIndex:"0",
    left:""
  },
  changeTab:function(e){
    //console.log(e)
    this.setData({
      currentIndex: e.currentTarget.dataset.aa
    })
    this.changeline(e)
    
  },
  changeline:function(){
    const query = wx.createSelectorQuery()
    var _this = this
    query.select('.tabTrue').boundingClientRect()
    query.exec(function (res) {
      _this.setData({
        left: res[0].left
      })
      //console.log(res[0].left)
    })
  },
  onLoad: function () {
    
    this.changeline(1)
   
  }
})

第二种方法(改变left值,且设置transform:translateX())

wxml

<view class='abox'>
    <view wx:for="{{title}}" class='tab {{currentIndex==index?"tabTrue":""}}'  bindtap='changeTab' data-aa='{{index}}'>
      {{item}}
    </view>
    <view class='b' style='left:{{left}}px;transform: translateX({{width}}rpx);'></view>
</view>

wxss

.abox{
  display: flex;
  flex-direction: row;
  width: 100%;
  /* justify-content: space-around; */
  position: relative;
  padding-bottom: 20rpx;
}

.tabTrue{
  color: red;
}
.tab{
  width: 50%;
  text-align: center;
}
.b{
  background: red;
  height: 4rpx;
  width:64rpx;
  position: absolute;
  bottom: 0;
  left: 50%;
  
  transition: all .3s linear;
}

js

Page({
  data: {
    title: ["首页", "掘金", ],
    currentIndex:"0",
    left:"0",
    width:"",
  },
  changeTab:function(e){
    console.log(e)
    this.setData({
      currentIndex: e.currentTarget.dataset.aa
    })
     this.changeline(e)
    
  },
  changeline:function(){
    const query = wx.createSelectorQuery()
    var _this = this
    query.select('.tabTrue').boundingClientRect()
    query.exec(function (res) {
      _this.setData({
        left: res[0].left
      })
      console.log(res[0].left)
    })
  },
  onLoad: function () {
    this.setData({
    left:this.data.left,
      width: this.data.width = (750 / this.data.title.length - 64)/2 //设置偏移 64是横线的宽度
    })
  
  }
})

上面两个都可以实现效果,这里面最重要的就是通过 changeTab方法获取有tabtrue这个class的标签,获取到标签的left值。


沈小白
242 声望9 粉丝

小白