vue实现单选取消和多选双击取消效果

vue单击选中和取消和多选效果

单击选中和取消

         我们在日常项目中经常需要实现,点击一个导航栏高亮,或者点击显示遮罩层展示信息。先来看一下效果。
在这里插入图片描述
        我这里显示的是一个遮罩层,图中点击显示的数字是vue循环中数组的下标。不废话了,上源码。

<template>
  <div class="hello">
    <ul>
    	<li v-for="(item,index) of list"
      :key = index
      @click="maskshow(index)"
      >
        <div class="content" :style="{'backgroundColor':item.backgroundcolor}">

        </div>
        <div class="mask" v-show="show === index">
          {{index}}
        </div>
      </li>

    </ul>
  </div>
</template>

<script>
export default {
  name: 'HelloWorld',
  data () {
    return {
      show:-1,
      list:[{
        backgroundcolor:"#FFB200",
        price:1
      },{
        backgroundcolor:"#B11EE0",
        price:2
      },{
         backgroundcolor:"#FFA4CF",
         price:3
      }]
    }
  },
  methods:{
   maskshow:function(index){
     let that = this;
     if(that.show === index)
     {
       this.show = -1
     }
     else{
       this.show = index
     }
   }
  }
}
</script>

<style scoped>
  @import url("../assets/reset.css");
  ul li{
    float: left;
    position: relative;
  }
  .content{
    width: 100px;
    height: 100px;
    margin: 5px;
    box-sizing: border-box;
  }
  .mask{
    position: absolute;
    left: 5px;
    top: 5px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    color: #FFFFFF;
    background:linear-gradient(rgba(36,13,103,1),rgba(70,29,165,0.9));
  }
</style>

如果需要一个默认选中,在data里面把show的值,改为默认选中数组元素的的下标就可以了。这个实现逻辑大家只需要跟着代码走一遍就看懂了,我就不在这里废话啦。

多选效果

        同样的逻辑稍加修改,我们就可以实现多选,双击取消。这种效果也比较常见,例如CSDN选择频道
在这里插入图片描述
再例如个性标签
在这里插入图片描述
上源码

<template>
  <div class="hello">
    <div>
      选中了{{listindex.length}}</div>
    <div>
      总价:{{sumprice}}
    </div>
    <ul>
    	<li v-for="(item,index) of list"
      :key = index
      @click="changemask(index)"
      >
        <div class="content" :style="{'backgroundColor':item.backgroundcolor}">

        </div>
        <div class="mask" v-show="listindex.indexOf(index)>-1">
          {{item.price}}</div>
      </li>

    </ul>
  </div>
</template>

<script>
export default {
  name: 'duoxuan',
  data () {
    return {
      sumprice:0,
      num:0,
      listindex:[],
      list:[{
        backgroundcolor:"#FFB200",
        price:1
      },{
        backgroundcolor:"#B11EE0",
        price:5
      },{
         backgroundcolor:"#FFA4CF",
         price:8
      }]
    }
  },
  methods:{
 changemask(index){
   let arrkey = this.listindex.indexOf(index);
   if(arrkey>-1){
     this.listindex.splice(arrkey,1)
   }else{
     this.listindex.push(index)
   }

   this.sumprice = 0
   for(var item of this.listindex)
   {
     this.sumprice += this.list[item].price
   }


 }
  }
}
</script>

<style scoped>
  @import url("../assets/reset.css");
  ul li{
    float: left;
    position: relative;
  }
  .content{
    width: 100px;
    height: 100px;
    margin: 5px;
    box-sizing: border-box;
  }
  .mask{
    position: absolute;
    left: 5px;
    top: 5px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    color: #FFFFFF;
    background:linear-gradient(rgba(36,13,103,1),rgba(70,29,165,0.9));
  }
</style>

在这里我们用一个空的数组来存li元素的下标,选中li元素时,把li元素的下标存进数组中。再次点击时,就将数组中对应的当前下标删除 。这个新建的数组元素与选中的li元素下标相等,我们就可以方便的计算出,总商品价格。数组的长度就是选中的 个数。
来看下效果图:
在这里插入图片描述
码字不易,点个赞吧
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值