【CSS】波纹效果

作者: 德育处主任 | 来源:发表于2018-08-11 13:38 被阅读7次
微信订阅号:rabbit_svip

纯CSS3做动画,完全不兼容IE10之前的浏览器


微信订阅号:rabbit_svip

gif录得有点卡,拷个代码在本地体验一下。

HTML代码

<div id="container">
    <div class='circle circle--1'></div>
    <div class='circle circle--2'></div>
    <div class='circle circle--3'></div>
    <div class='circle circle--4'></div>
    <div class='circle circle--5'></div>
    <div class='circle circle--6'></div>
</div>

CSS代码

#container {
    width: 500px;
    height: 500px;
    position: relative;
    margin: 100px auto 0;
    transition: opacity 1s;
}
.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
    background: #487ad3;
}
.circle--1 {
    opacity: 1;
    animation-delay: 0.12s;
}
.circle--2 {
    opacity: 0.5;
    animation-delay: 0.24s;
}
.circle--3 {
    opacity: 0.3333;
    animation-delay: 0.36s;
}
.circle--4 {
    opacity: 0.25;
    animation-delay: 0.48s;
}
.circle--5 {
    opacity: 0.2;
    animation-delay: 0.6s;
}
.circle--6 {
    opacity: 0.1666;
    animation-delay: 0.72s;
}

.circle--1 {
    width: 10%;
    height: 10%;
}
.circle--2 {
    width: 20%;
    height: 20%;
}
.circle--3 {
    width: 30%;
    height: 30%;
}
.circle--4 {
    width: 40%;
    height: 40%;
}
.circle--5 {
    width: 50%;
    height: 50%;
}
.circle--6 {
    width: 60%;
    height: 60%;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.70);
    }
    75% {
        transform: translate(-50%, -50%) scale(1);
    }
}

section {
    width: 500px;
    height: 40px;
    margin: 10px auto 0;
    display: flex;
    justify-content: space-around;
}
section > div {
    width: 100px;
    height: 100%;
    background-image: linear-gradient( 135deg, #52E5E7 10%, #130CB7 100%);
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 4px;
    border-radius: 10px;
}

@keyframes: 定义动画用的。后面跟着动画名,大括号里设置要改变的属性。

animation: 会用动画。后面跟着动画名。

animation里面的 infinite 说明重复执行动画。

opacity: 设置不透明度。

animation-delay: 延迟执行。

display: flex 弹性盒布局




相关文章

  • 【CSS】波纹效果

    纯CSS3做动画,完全不兼容IE10之前的浏览器 gif录得有点卡,拷个代码在本地体验一下。 HTML代码 CSS...

  • css按钮点击水波纹效果

    利用伪元素:after绘制水波纹,此处的水波纹效果使用了css函数radial-gradient(径向渐变[htt...

  • 纯CSS实现水波纹效果

    ​首先我们从结构和样式两个方面来讲解以上动图的实现过程: Html结构: 最外层类名为square元素包裹着以类名...

  • css3实现水球波纹效果

    原理:父div设为圆形,并隐藏超出范围的内容,多个子div设为大圆角正方形并设置背景颜色, 子div圆心设置到父d...

  • 点击容器 呈现水波纹效果

    1.首先创建 waves.css 2.创建 waves.js 3.使用 效果 点击后 水波纹扩散

  • css和js点击波纹扩散

    1.点击波纹扩散 效果: 代码 按钮内的波纹扩散: 效果: 代码:

  • 2019-11-05

    水波纹,interpolator加速器属性值 ------- 水波纹效果实现: 点击水波纹效果:只有android...

  • 漪涟波纹效果 css3 animation

    前端入坑纪 62 今天来分享 一个类似水波纹扩散的鼠标hover效果 好,详解如下! OK,first thing...

  • AI知识点-波纹效果

    波纹效果 画一条直线,选择效果-扭曲和变形-波纹效果,在设置面板中,根据需要进行设置。 大小是指波纹隆起的高度,隆...

  • 波纹效果动画

    类似淘宝的效果:  我们知道,计算机不可能绘制出一条完美的曲线,如果放大到像素的级别,可以看到这些曲线其实都是栅格...

网友评论

    本文标题:【CSS】波纹效果

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