• 纯CSS制作“跳动的心”demo


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Red Heart</title>
        <style>
            html, body {
                height: 100%;
            }

            body {
                margin: 0;
                padding: 0;
                background: #ffa5a5;
                background: linear-gradient(to bottom, #ffa5a5 0%,#ffd3d3 100%);
            }

            .chest {
                 500px;
                height: 500px;
                margin: 0 auto;
                position: relative;
            }

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

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

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

            .side {
                top: 100px;
                 220px;
                height: 220px;
                border-radius: 220px;
            }

            .center {
                 210px;
                height: 210px;
                bottom: 100px;
                left: 145px;
                /*transform: rotate(45deg);*/
            }

            .left {
                left: 62px;
            }

            .right {
                right: 62px;
            }


            @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 class="chest">
            <div class="heart left side top"></div>
            <div class="heart center"></div>
            <div class="heart right side"></div>
        </div>
    </body>
    </html>

  • 相关阅读:
    雅虎公司C#笔试题
    DES
    从Socket看Visual C#.Net网络程序开发
    进一步接触C#委托与事件
    学习C#消息:循序渐进
    解惑答疑:C#委托和事件
    利用Visual C#实现Windows管道技术1
    使用命名管道通过网络在进程之间进行通信
    C#体验编程技术 类与对象
    学习C#实现HTTP协议:多线程文件传输
  • 原文地址:https://www.cnblogs.com/hbqfr/p/6040057.html
Copyright © 2020-2023  润新知