css波浪百分比

HTML代码:

<div class="container">
    <div class="wave"></div>
</div>

CSS代码:

<style>
        .container {
            position: absolute;
            width: 200px;
            height: 200px;
            padding: 5px;
            border: 5px solid rgb(0, 102, 204);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            overflow: hidden;
        }
        .wave {
            position: relative;
            width: 200px;
            height: 200px;
            background-color: rgb(51, 102, 204);
            border-radius: 50%;
        }
        .wave:before,
        .wave:after {
             content: "";
             position: absolute;
             width: 400px;
             height: 400px;
             top: 0;
             left: 50%;
             background-color: rgba(255, 255, 255, 0.4);
             border-radius: 45%;
             transform: translate(-50%, -70%) rotate(0);
             animation: rotate 6s linear infinite;
             z-index: 10;
         }

        .wave:after {
             border-radius: 47%;
             background-color: rgba(255, 255, 255, 0.9);
             transform: translate(-50%, -70%) rotate(0);
             animation: rotate 10s linear -5s infinite;
             z-index: 20;
        }


        @keyframes rotate {
            50% {
                transform: translate(-50%, -73%) rotate(180deg);
            }
            100% {
                transform: translate(-50%, -70%) rotate(360deg);
            }
        }
    </style>
发布了83 篇原创文章 · 获赞 3 · 访问量 1614

猜你喜欢

转载自blog.csdn.net/weixin_45959525/article/details/104299094