【动画消消乐|CSS】086.炫酷水波浪Loading过渡动画

前言

Hello!小伙伴!

非常感谢您阅读海轰的文章,倘若文中有错误的地方,欢迎您指出~
 

自我介绍 ଘ(੭ˊᵕˋ)੭

昵称:海轰

标签:程序猿|C++选手|学生

简介:因C语言结识编程,随后转入计算机专业,有幸拿过国奖、省奖等,已保研。目前正在学习C++/Linux(真的真的太难了~)

学习经验:扎实基础 + 多做笔记 + 多敲代码 + 多思考 + 学好英语!
 

<font color="red" font-wight="800">【动画消消乐】</font> 平时学习生活比较枯燥,无意之间对一些网页、应用程序的过渡/加载动画产生了浓厚的兴趣,想知道具体是如何实现的? 便在空闲的时候学习下如何使用css实现一些简单的动画效果,文章仅供作为自己的学习笔记,记录学习生活,争取理解动画的原理,多多“消灭”动画!

效果展示

在这里插入图片描述

Demo代码

HTML

<!DOCTYPE html>
<html lang="en">

    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="style.css">
        <title>Document</title>
    </head>

    <body>
        <section>
            <div class="circle">
                <div class="wave"></div>
            </div>
        </section>
    </body>

</html>

CSS

/* 
模版css样式
仅供演示使用 
*/

html, body {
    margin: 0;
    height: 100%;
} 

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #12383e;
}

section {
    width: 650px;
    height: 300px;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 18px solid white;
    overflow: hidden;
}

section::before {
    content: 'CSS';
    width: 150px;
    height: 150px;
    text-align: center;
    line-height: 250px;
    background-color: #00cec9;
    position: absolute;
    top: -76px;
    right: -76px;
    transform: translate(50%, -50%);
    font-size: 32px;
    font-weight: 500;
    font-family: sans-serif;
    color: white;
    transform: rotate(45deg);
}

section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 10px solid white;
    border-radius: 20px;
}

/* 实现代码 */

.circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: #b0f4ff;
    border-radius: 50%;
    overflow: hidden;
    animation: loadingBreath 5s infinite linear;
}

.circle::before {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    letter-spacing: 2px;
    color: #10a789;
    font-family: sans-serif;
    z-index: 2;
}

.circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 25%;
    bottom: 0;
    background-image: linear-gradient(to top, #12c8e0, #36e9ff, #5ffbf1);
    animation: loadingRun 5s linear infinite;
}

.wave::before {
    content: '';
    position: absolute;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    background-color: #85f7fb;
    border-radius: 52% 25% 62% 69%/25% 38%;
    animation: loadingWave 5s linear infinite;
}

.wave::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    background-color: #d0f4ff;
    border-radius: 42% 38% 40% 62%/28% 35%;
    animation: loadingWave 5s ease-in-out infinite;
}

/* 呼吸灯动画 */

@keyframes loadingBreath {
    0% {
        box-shadow: 0 0 5px 0 #85f7fb;
    }
    25% {
        box-shadow: 0 0 20px 0 #85f7fb;
    }
    50% {
        box-shadow: 0 0 5px 0 #85f7fb;
    }
    75% {
        box-shadow: 0 0 20px 0 #85f7fb;
    }
    100% {
        box-shadow: 0 0 5px 0 #85f7fb;
    }
}

/* 底部液体上升动画 */

@keyframes loadingRun {
    0% {
        height: 25%;
    }
    100% {
        height: 100%;
    }
}

/* wave动画 */

@keyframes loadingWave {
    0% {
        top: -100%;
        transform: rotate(0);
    }
    100% {
        top: -200%;
        transform: rotate(360deg);
    }
}

原理详解

步骤1

从效果图上分析

可以将其分为两个部分

  • 容器
  • 波浪

这里使用两个div,一个为circle类,一个为wave类,分别代表容器和wave

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

步骤2

设置circle类

  • 相对定位
  • 宽度、高度均为200px
  • 背景色:#b0f4ff
  • 圆角:50%
.circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: #b0f4ff;
    border-radius: 50%;
}

效果图如下:

在这里插入图片描述

步骤3

利用.circle::befor伪元素

用于显示“Loading...”字样

设置为

  • 绝对定位
  • 使其位于正中间( top: 50%; left: 50%; transform: translate(-50%, -50%);)
  • 字体大小:18px
  • 颜色:#10a789;
  • z-index:2(比1大就行 使其文字处于最上层)
.circle::before {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    letter-spacing: 2px;
    color: #10a789;
    font-family: sans-serif;
    z-index: 2;
}

效果图如下:

在这里插入图片描述

步骤4

利用.circle::after伪元素

设置为

  • 绝对定位(bottom: 0; )
  • 宽度:100%
  • 高度:25%
  • 背景颜色为渐变色 linear-gradient(to top, #12c8e0, #36e9ff, #5ffbf1);
.circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 25%;
    bottom: 0;
    background-image: linear-gradient(to top, #12c8e0, #36e9ff, #5ffbf1);
}

效果图如下:

在这里插入图片描述

步骤5

为.circle::after伪元素添加动画

使其随时间其高度逐渐增大

只需要明确两个关键帧

  • 初始位置:height: 25%
  • 结束位置:height: 100%
.circle::after {
    animation: loadingRun 5s linear infinite;
}


@keyframes loadingRun {
    0% {
        height: 25%;
    }
    100% {
        height: 100%;
    }
}

效果图如下:

在这里插入图片描述

步骤6

对circle设置隐藏溢出

.circle {
    overflow: hidden;
}

效果图如下:

在这里插入图片描述

步骤7

这里先注释circle隐藏溢出 以及 circle::after动画 便于后面单独分析

.circle {
    /* overflow: hidden; */
}
.circle::after {
    /* animation: loadingRun 5s linear infinite; */
}

然后我们使用wave的两个伪元素.wave::before、.wave::afte与cirle::after产生波浪的效果

首先设置wave::before

  • 绝对定位(left: -50%;)
  • 宽度、高度均为200%
  • z-index:1
  • 背景色:#85f7fb
  • border-radius: 52% 25% 62% 69%/25% 38%; 重点
.wave::before {
    content: '';
    position: absolute;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    background-color: #85f7fb;
    border-radius: 52% 25% 62% 69%/25% 38%;/*重点*/
}

效果图如下:

在这里插入图片描述

注:.wave::before z-index为1 大于circile(0) 小于.circle::before(2)

为.wave::before 添加动画

效果描述

自身不断旋转的同时 也不断上升

.wave::before {
    animation: loadingWave 5s linear infinite;
}

@keyframes loadingWave {
    0% {
        top: -100%;
        transform: rotate(0);
    }
    100% {
        top: -200%;
        transform: rotate(360deg);
    }
}

效果图如下:

在这里插入图片描述

同理,对wave::after进行同样的设置

不同在于ç四边圆角率与before不同、颜色浅一点

border-radius: 42% 38% 40% 62%/28% 35%;
background-color: #d0f4ff;

其他都一样


在这里插入图片描述

当wave::after、before运用同样的动画时

效果图如下:

在这里插入图片描述

步骤8

取消circle隐藏溢出 以及 circle::after动画

.circle {
    overflow: hidden; 
}
.circle::after {
     animation: loadingRun 5s linear infinite; 
}

效果图如下:

在这里插入图片描述

步骤9

最后为cirlce添加一个呼吸灯动画效果

.circle {
    animation: loadingBreath 5s infinite linear;
}

```css

@keyframes loadingBreath {
    0% {
        box-shadow: 0 0 5px 0 #85f7fb;
    }
    25% {
        box-shadow: 0 0 20px 0 #85f7fb;
    }
    50% {
        box-shadow: 0 0 5px 0 #85f7fb;
    }
    75% {
        box-shadow: 0 0 20px 0 #85f7fb;
    }
    100% {
        box-shadow: 0 0 5px 0 #85f7fb;
    }
}

得到最终效果图

在这里插入图片描述

结语

文章仅作为学习笔记,记录从0到1的一个过程

希望对您有所帮助,如有错误欢迎小伙伴指正~

我是 <font color="#0984e3">海轰ଘ(੭ˊᵕˋ)੭</font>

如果您觉得写得可以的话,请点个赞吧

谢谢支持❤️

学习参考:

https://www.bilibili.com/video/BV1Ai4y1t7od
https://developer.mozilla.org/zh-CN/docs/Web/CSS/::before

在这里插入图片描述
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容