vue3 :first-child和:last-child的使用

7 篇文章 0 订阅


前言

:first-child和:last-child的巧妙使用。


一、先看效果图

item1选中效果
请添加图片描述

鼠标到item2上的效果
请添加图片描述

二、代码效果

<script lang="ts" setup>
const tabData = [{ name: 'item1', content: '' }, { name: 'item2', content: '' }, { name: 'item3', content: '' }]
const currentContentIndex = ref(0)
</script>

<template>
  <div class="flex-none bg-white">
    <div
      class="ml-20px mt-20px mr-20px flex flex-row h-40px product-tab"
    >
      <div
        v-for="(item, index) in tabData"
        :key="item.id"
        class="tab_item h-40px pl-10px pr-10px bg-white cursor-pointer min-w-132px flex items-center text-#333"
        :class="{ active: currentContentIndex === index }"
        @click.stop="currentContentIndex = index"
      >
        <div class="center font-500 text-16px">
          {{ item.name }}
        </div>
        <div class="del-handle">
          <i
            class="edit-icon i-mx-edit block"
          />
          <i
            v-if="index !== 0"
            class="delete-icon i-mx-close block"
            alt="删除按钮"
          />
        </div>
      </div>
      <div
        class="h-100% w-40px delete_button center cursor-pointer"
      >
        +
      </div>
    </div>
    <div class="bottom_line mb-30px" />
  </div>
</template>

<style lang="scss" scoped>
.product-tab {
  & > div {
    &:first-child {
      border-radius: 10px 0 0 0;
      border-left-width: 1px;
      border-top-width: 1px;
    }

    border-width: 1px;
    border-color: #e5e5e5;
    border-style: solid;
    border-bottom-width: 0;

    &:last-child {
      border-radius: 0 10px 0 0;
      border-left-width: 0;
      border-right-width: 1px;
      border-top-width: 1px;
    }
  }

  & > div + div {
    border-left-width: 0;
  }
}
.tab_item {
  justify-content: center;
  &.active {
    background: #f0f2f5;
    position: relative;
    border-color: #f0f2f5 !important;
    &::after {
      content: '';
      display: block;
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      background: #01bfbf;
      width: 32px;
      height: 3px;
    }
  }
  &:hover {
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 10px;
    color: #00a7a7;
    .del-handle {
      display: flex;
    }
  }
  .del-handle {
    margin-left: 20px;
    display: none;
    align-items: center;
    justify-content: flex-end;
    .edit-icon,
    .delete-icon {
      cursor: pointer;
      width: 20px;
      height: 20px;
    }
    .edit-icon {
      margin-right: 10px;
    }
  }
}
.delete_button {
  border-top-right-radius: 10px;
  border: 1px solid #e5e5e5;
  color: #333333;
  &:hover {
    color: #00a7a7;
  }
}

.bottom_line {
  border-top: 0.5px solid #e5e5e5;
  height: 1px;
  margin-left: 20px;
  margin-right: 20px;
}
</style>


总结

这个实现例子虽然简单,但是对于小白来说,还是要一点时间去理解的,希望能帮助到您!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

明似水

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值