美文网首页
纯css3实现圆形从中心向四周扩散动画效果

纯css3实现圆形从中心向四周扩散动画效果

作者: MrHong_bfea | 来源:发表于2020-10-24 14:21 被阅读0次

    网上太多抄袭的demo,但是都没有很好的效果,所以自己实现了一个,留给需要的人,话不多说 直接上代码吧。

    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>css3动画圆波扩散效果(红色预警demo)</title>
    <style>
    @keyframes warn1 {
        0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
        }
        25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
        }
        50% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.3;
        }
        75% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
        }
        100% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.0;
        }
    }
    .container {
        position: relative;
        width: 120px;
        height: 120px;
        margin: auto;
    }
    /* 产生动画(向外扩散变大)的圆圈 第一个圆 */
    .pulse {
        position: absolute;
        width: 300px;
        height: 300px;
        left: 0;
        top: 0;
        border: 1px solid #F56C6C;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        z-index: 1;
        opacity: 0;
        animation: warn1 2s linear 0.5s infinite;
        box-shadow: 1px 1px 30px #F56C6C; /* 阴影效果 */
    }
    /* 产生动画(向外扩散变大)的圆圈 第二个圆 */
    .pulse1 {
        position: absolute;
        width: 300px;
        height: 300px;
        left: 0;
        top: 0;
        border: 1px solid #F56C6C;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        z-index: 1;
        opacity: 0;
        animation: warn1 2s linear 1s infinite;
        box-shadow: 1px 1px 30px #F56C6C; /* 阴影效果 */
    }
    .pulse2 {
        position: absolute;
        width: 300px;
        height: 300px;
        left: 0;
        top: 0;
        border: 1px solid #F56C6C;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        z-index: 1;
        opacity: 0;
        animation: warn1 2s linear 1.5s infinite;
        box-shadow: 1px 1px 30px #F56C6C; /* 阴影效果 */
    }
    .pulse3 {
        position: absolute;
        width: 300px;
        height: 300px;
        left: 0;
        top: 0;
        border: 1px solid #F56C6C;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        z-index: 1;
        opacity: 0;
        animation: warn1 2s linear 2s infinite;
        box-shadow: 1px 1px 30px #F56C6C; /* 阴影效果 */
    }
    </style>
    </head>
    <body>
        <div class="container">
            <div class="pulse"></div>
            <div class="pulse1"></div>
            <div class="pulse2"></div>
            <div class="pulse3"></div>
        </div>
    </body>
    </html>
    

    这个我是用在地图红色预警上的demo,我把他抽出来了,希望能帮助到大家!

    相关文章

      网友评论

          本文标题:纯css3实现圆形从中心向四周扩散动画效果

          本文链接:https://www.haomeiwen.com/subject/urgimktx.html