伪类动态绑定雪碧图

雪碧图:(动态绑定上面的或者下面的)

HTML:(动态绑定current)

 <div class="swiper-slide" v-for="(item,index) in carList" :key="index" v-if="userInfo.carInfo&&userInfo.carInfo.vin!=item.vin" @click="carClick(item)" :class="{current:item.current}">
  <div class="mask_center_p">
    <div class="center_pone">{{item.carStyleName}}</div>
    <div class="center_ptwo">VIN:{{item.vin}}</div>
  </div>
 </div>

js:

 carClick(item){
   this.carList.forEach(item=>{
        item.current = false;
      });
   item.current = true;
 },

css:

 .swiper-slide {
      display: flex;
      height: auto;
      margin-bottom: 30px;

         &::before{
            display: block;
            content: '';
            height: 33px;
            width: 33px;
            border-radius: 50%;
            background: url('~@/static/images/index/index_ifchoose.png') no-repeat left bottom;
            background-size: 33px auto;     
          }
         &.current{
            &::before{
               background-position: left top;
              }
           }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值