Vue 中做一个有选中效果的Tab标签栏

工作需要做了一个tab标签栏 记录一下
下面是代码

HTML

<!--Tab标签栏-->
        <div class="mainTabA">
          <div class="tabOption" v-for="(item,index) in tuijianList" :key="index" @click="changeActive(index)"  :class="{activeTab : item.isActive}" >
            <p>{{item.nm}}</p>
            <p>{{item.cm}}</p>
          </div>
        </div>

Js

写在data()里的

tuijianList:[{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        },{
          nm:'',
          cm:'',
          isActive: false,
        }],
    methods:{
      changeActive(index){
      //遍历数组,将已经选中项的布尔值置否
        this.tuijianList.forEach(item =>{
          if(item.isActive === true){
            item.isActive = false
          }else{
          }
        });
        this.tuijianList[index].isActive = true;
      }
    }

css

懒得删了 就全拿上来了

    //导航栏
    .mainTabA{
      display: flex;
      width: 100%;
      margin-top: 30px;
      height: 93px;
      background-color: #FFFFFF;
      justify-content: space-around;
      .tabOption{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 148px;
        border-right: 1px solid;
        border-image: -webkit-linear-gradient(#ffffff , rgba(213,213,213,0.6) , #ffffff)1 10 1; /* 控制边框颜色渐变 */
        border-image: -moz-linear-gradient(#ffffff , rgba(213,213,213,0.6) , #ffffff)1 10 1;
        border-image: linear-gradient(#ffffff , rgba(213,213,213,0.6) , #ffffff)1 10 1; /* 标准的必须写在最后 */
        p:nth-child(1){
          line-height: 31px;
          font-size: 16px;
          cursor: pointer;
          color: #343434;
          margin: 0 auto;
          width: 91px;
        }
        p:nth-child(2){
          line-height: 31px;
          font-size: 14px;
          color: #999999;
          cursor: pointer;
          margin: 0 auto;
          width: 91px;
        }
      }
      .activeTab{
        p:nth-child(1){
          line-height: 31px;
          font-size: 16px;
          cursor: pointer;
          color: #FFFFFF;
          background-color: #FF3E3E;
          border-radius: 15px;
        }
        p:nth-child(2){
          line-height: 31px;
          font-size: 14px;
          color: #FF3E3E;
          cursor: pointer;
        }
      }
    }

显示为

在这里插入图片描述
有问题可以留言

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值