html表白代码!

编程知识 更新时间:2023-04-05 23:24:46
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>跳动爱心</title>
    <style>
        *{
     
     
            padding: 0;
            margin: 0;
        }
        body{
     
     
            background-color: pink;
        }
        #frame{
     
     
            position: relative;
            width: 400px;
            height: 300px;
            margin: 250px 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 .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;;
            }
        }
    </style>
</head>
<body>
    <div id="frame">
        <div class="heart left"></div>
        <div class="heart right"></div>
        <div class="heart bottom"></div>
    </div>
</body>
</html>

效果图: 动态图

更多推荐

html表白代码!

本文发布于:2023-04-05 23:24:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/3a07db352add9658acfa55afb7623fea.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:代码   html

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!

  • 47800文章数
  • 14阅读数
  • 0评论数