css实现一个对话框

看看效果图:

 看一下代码:

<template>
  <div>
    <!-- 对话框 -->
    <div class="item"></div>
    <!-- 梯形 -->
    <div class="box"></div>
    <!-- 跳动的爱心 -->
    <div class="heart"></div>
  </div>
</template>

<script>
  export default {}
</script>

<style lang="scss" scoped>
  .item {
    margin: 100px;
    position: relative;
    width: 300px;
    height: 100px;
    border: 2px solid #f1a456;
    border-radius: 10px;
    background-color: #fdf3e6;
  }
  .item::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 40%;
    width: 20px;
    height: 20px;
    background: #fdf3e6;
    z-index: 0;
    border: 2px solid #f1a456;
    border-left: transparent;
    border-bottom: transparent;
    transform: rotate(45deg);
    /* transform: translateY(-50%); */
  }
  .box {
    margin: 100px;
    border-bottom: 70px solid #333333;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    height: 0;
    width: 160px;
  }
  .heart {
    margin: 100px;
    position: relative;
    height: 100px;
    width: 100px;
    background: red;
    transform: rotate(45deg) scale(1);
    animation: dong 1s infinite;
    transition: all 0.3s;
  }
  .heart::after,
  .heart::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: red;
    border-radius: 50%;
  }
  .heart::after {
    top: -54px;
  }
  .heart::before {
    left: -54px;
  }
  @keyframes dong {
    0% {
      transform: rotate(45deg) scale(1);
    }
    100% {
      transform: rotate(45deg) scale(0.8);
    }
  }
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值