• 用html写一个爱心


    在这里插入图片描述

    DOCTYPE html>
    <html lang="zh-CN">
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    
        <title>爱您title>
        <style>
          * {
            padding: 0;
            margin: 0;
          }
          body {
            background-color: pink;
          }
          #frame {
            position: relative;
            width: 400px;
            height: 300px;
            margin: 200px auto;
          }
          .left,
          .right {
            top: 0;
            width: 200px;
            height: 200px;
            border-radius: 50%;
          }
          .left {
            left: 35px;
          }
          .right {
            right: 35px;
            z-index: -1;
          }
          .bottom {
            bottom: 36px;
            left: 100px;
            width: 200px;
            height: 200px;
            transform: rotate(45deg);
            z-index: -1;
          }
          .heart {
            position: absolute;
            box-shadow: 0 0 40px #d5093c;
            animation: beat 0.8s ease infinite normal;
            background: linear-gradient(-90deg, #f50a45 0%, #d5093c 40%);
          }
          @keyframes beat {
            0% {
              transform: scale(1) rotate(225deg);
              box-shadow: 0 0 40px #d5093c;
            }
            50% {
              transform: scale(1.1) rotate(225deg);
              box-shadow: 0 0 70px #d5093c;
            }
            100% {
              transform: scale(1) rotate(225deg);
              box-shadow: 0 0 40px #d5093c;
            }
          }
          @keyframes a {
            0% {
              transform: scale(1) rotate(0deg);
            }
            50% {
              transform: scale(1.1) rotate(0deg);
            }
            100% {
              transform: scale(1) rotate(0deg);
            }
          }
    
          #z {
            width: 90px;
            margin: -23% 30%;
            position: absolute;
            animation: a 0.8s ease infinite normal;
          }
          #w {
            width: 90px;
            margin: -23% 67%;
            position: absolute;
            animation: a 0.8s ease infinite normal;
          }
          #con {
            width: 20px;
            margin: -7% 49.5%;
            position: absolute;
            animation: a 0.8s ease infinite normal;
          }
        style>
      head>
      <body>
        <div id="frame">
          <div class="heart left">div>
          <div class="heart right">div>
          <div class="heart bottom">div>
        div>
        <div id="z">
          <h2>胡歌h2>
        div>
        <div id="w">
          <h2>未知h2>
        div>
        
        <script type="text/javascript">
          var btn = document.getElementById('frame')
          //   双击事件
          btn.ondblclick = function () {
            // window.location.href = 'http://www.kim-shift.cn'
            window.open('http://www.kim-shift.cn')
          }
        script>
      body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
  • 相关阅读:
    unity 实用框架
    Linux文件操作命令总结
    职场PUA:为什么你就不能逼自己一把呢?
    [附源码]计算机毕业设计ssm新能源电动汽车充电桩服务APP
    汉字风格迁移篇---个人手写体汉字字体的学习与生成*
    Spring中事务的传播行为有哪些?
    红帽认证笔记2
    千亿级大数据如何存储的?
    摄影工作室标配,智云五倍F100棒灯快速塑造专业风格
    phantom3D模体
  • 原文地址:https://blog.csdn.net/liulang68/article/details/137330081