简介:Java领域优质创作者    公众号@Java李杨勇  简历模板、学习资料、面试题库、技术互助【关注我,都给你】

效果演示: 获取源码 公众号搜索【Java李杨勇】

   

效果演示:

HTML+CSS+JS实现 ❤️圆圈波纹动画特效❤️_html5

代码目录: 

HTML+CSS+JS实现 ❤️圆圈波纹动画特效❤️_css_02

主要代码实现:

CSS样式:

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #1f3244;
}

.pulse {
    background-color: coral;
    height: 20vmax;
    width: 20vmax;
    border-radius: 100%;
    position: relative;
}

.ring {
    position: absolute;
    background-color: inherit;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    opacity: 0.8;
    -webkit-animation: pulsing 2s ease-out infinite;
    animation: pulsing 2s ease-out infinite;
}

.ring:nth-of-type(1) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.ring:nth-of-type(2) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.ring:nth-of-type(3) {
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
}

@-webkit-keyframes pulsing {
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes pulsing {
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

HTML代码 :