CSS加载动画效果

举报
周棋洛 发表于 2022/05/26 00:21:37 2022/05/26
【摘要】 哈喽!俺又来了,马上就要8月份了,时间仿佛在对我说:“暑假?拿来吧你”🙃又是学习css和js的一天,在刷小视频加载时经常看到一些加载动画,简单上手了css3新增的动画后,就想仿写一个加载效果,就是玩哈哈...

哈喽!俺又来了,马上就要8月份了,时间仿佛在对我说:“暑假?拿来吧你”🙃又是学习css和js的一天,在刷小视频加载时经常看到一些加载动画,简单上手了css3新增的动画后,就想仿写一个加载效果,就是玩哈哈,开整!
在这里插入图片描述

效果:
在这里插入图片描述

1. 分析元素

可以看到这个简单的特效由5个块通过延时差形成的,能给人一种再等等的想法。很不错,设计yyds。
5个块我们用5个盒子实现,配合CSS3的动画关键帧以及伪类选择器实现延时差即可实现。有一个好的分析和思路,可以减少你的coding出错率和time,🆗,coding吧!!!

2.html部分

这就是爸爸管着5个儿子,不用多说了

<!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">
    <title>加载动画</title>
</head>
<body>
    <div class="box">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </div>
</body>
</html>

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

3.CSS部分

CSS3的结构伪类选择器控制 匹配除了第一个以外的儿子,延时产生感觉,哈哈,为啥不可以直接写在一个里好比.box>div:nth-child(2,3,4,5){ animation-delay: -1s; }不懂,可能还需要完善吧!我是这样想的

        .box{
            margin: 200px auto;
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 10px;
        }
        .box > div{
            background-color: rgba(64, 219, 25,0.9);
            width: 5px;
            height: 100%;
            /* 行内块 */
            display: inline-block;
            /*         名字  执行时间     一直执行       先慢再快再慢 */
            animation: move   1.2s      infinite    ease-in-out;

        }
        /* 定义关键帧 */
        @keyframes move{
            0%{transform: scaleY(0.4);}
            40%{transform: scaleY(0.4);}
            60%{transform: scaleY(0.4);}
            80%{transform: scaleY(0.4);}
            100%{transform: scaleY(0.4);}
            20%{transform: scaleY(1);}
        }
        /* 伪类选择器控制 匹配除了第一个以外的儿子,延时产生感觉*/
        .box>div:nth-child(2){
            animation-delay: -1s;
        }
        .box>div:nth-child(3){
            animation-delay: -0.9s;
        }
        .box>div:nth-child(4){
            animation-delay: -0.8s;
        }
        .box>div:nth-child(5){
            animation-delay: -0.7s;
        }

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

4.完整代码

<!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">
    <title>加载动画</title>
    <style>
        .box{
            margin: 200px auto;
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 10px;
        }
        .box > div{
            background-color: rgba(64, 219, 25,0.9);
            width: 5px;
            height: 100%;
            /* 行内块 */
            display: inline-block;
            /*         名字  执行时间     一直执行       先慢再快再慢 */
            animation: move   1.2s      infinite    ease-in-out;

        }
        /* 定义关键帧 */
        @keyframes move{
            0%{transform: scaleY(0.4);}
            40%{transform: scaleY(0.4);}
            60%{transform: scaleY(0.4);}
            80%{transform: scaleY(0.4);}
            100%{transform: scaleY(0.4);}
            20%{transform: scaleY(1);}
        }
        .box>div:nth-child(2){
            animation-delay: -1s;
        }
        .box>div:nth-child(3){
            animation-delay: -0.9s;
        }
        .box>div:nth-child(4){
            animation-delay: -0.8s;
        }
        .box>div:nth-child(5){
            animation-delay: -0.7s;
        }
    </style>
</head>
<body>
    <div class="box">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </div>
</body>
</html>

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58

是不是很简单,写京东的项目受到打击了,还是慢慢来吧!是要有一个过程的,加油~🆗,就到这,下课,拜拜了你!
在这里插入图片描述


文章来源: blog.csdn.net,作者:周棋洛ყ ᥱ ᥉,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/m0_53321320/article/details/119137175

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。