使用css制作心形图案并且添加动画心动效果

比较简单,就直接上代码了

复制代码
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      html,
      .chest {
        width: 80px;
        height: 80px;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .text {
        position: absolute;
        bottom: -20px;
        color: #ffd3d3;
      }

      .heart {
        position: absolute;
        z-index: 2;
        background: linear-gradient(-90deg, #f50a45 0%, #d5093c 10%);
        animation: beat 0.7s ease infinite;
      }

      .heart.center {
        background: linear-gradient(-45deg, #b80734 0%, #d5093c 10%);
      }

      .heart.top {
        z-index: 3;
      }

      .side {
        width: 35.2px;
        height: 35.2px;
        border-radius: 50%;
        top: 16px;
      }

      .center {
        width: 33.6px;
        height: 33.6px;
        bottom: 16px;
        left: 23.2px;
      }

      .left {
        left: 9.92px;
      }
      .right {
        right: 9.92px;
      }

      @keyframes beat {
        0% {
          transform: scale(1) rotate(225deg);
          box-shadow: 0 0 10px #d5093c;
        }

        50% {
          transform: scale(1.1) rotate(225deg);
          box-shadow: 0 0 10px #d5093c;
        }

        100% {
          transform: scale(1) rotate(225deg);
          box-shadow: 0 0 10px #d5093c;
        }
      }
    </style>
  </head>
  <body>
    <div class="chest" οnclick="moveDiv()">
      <div class="heart left side top"></div>
      <div class="heart center"></div>
      <div class="heart right side"></div>
      <div class="text">关注我们</div>
    </div>
  </body>
</html>
<script>
  function moveDiv() {
    var widthNumber = randomNum(10, document.documentElement.clientWidth);
    var heightNumber = randomNum(
      10,
      document.documentElement.clientHeight - 200
    );
    // 获取 <div> 元素
    var movingDiv = document.querySelector(".chest");
    // 隐藏 <div> 元素
    movingDiv.style.display = "none";
    setTimeout(function () {
      // 更新 <div> 元素的样式
      movingDiv.style.display = "flex";
      movingDiv.style.position = "absolute";
      movingDiv.style.left = widthNumber + "px";
      movingDiv.style.top = heightNumber + "px";
    }, 200); // 模拟延时效果
  }

  //生成从minNum到maxNum的随机数
  function randomNum(minNum, maxNum) {
    switch (arguments.length) {
      case 1:
        return parseInt(Math.random() * minNum + 1, 10);
        break;
      case 2:
        return parseInt(Math.random() * (maxNum - minNum + 1) + minNum, 10);
        break;
      default:
        return 0;
        break;
    }
  }
</script>

如若转载,请注明出处:开源字节 https://sourcebyte.vip/article/359.html

相关推荐
也无晴也无风雨1 小时前
深入剖析输入URL按下回车,浏览器做了什么
前端·后端·计算机网络
Martin -Tang1 小时前
Vue 3 中,ref 和 reactive的区别
前端·javascript·vue.js
FakeOccupational3 小时前
nodejs 020: React语法规则 props和state
前端·javascript·react.js
放逐者-保持本心,方可放逐3 小时前
react 组件应用
开发语言·前端·javascript·react.js·前端框架
曹天骄4 小时前
next中服务端组件共享接口数据
前端·javascript·react.js
阮少年、4 小时前
java后台生成模拟聊天截图并返回给前端
java·开发语言·前端
郝晨妤6 小时前
鸿蒙ArkTS和TS有什么区别?
前端·javascript·typescript·鸿蒙
AvatarGiser6 小时前
《ElementPlus 与 ElementUI 差异集合》Icon 图标 More 差异说明
前端·vue.js·elementui
喝旺仔la6 小时前
vue的样式知识点
前端·javascript·vue.js
别忘了微笑_cuicui6 小时前
elementUI中2个日期组件实现开始时间、结束时间(禁用日期面板、控制开始时间不能超过结束时间的时分秒)实现方案
前端·javascript·elementui