【HTML+CSS】043.自定义加载动画(学习打卡!)

效果展示

在这里插入图片描述

Demo代码

HTML




    
    
    
    
    Document


    

CSS

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #263238;
}

section {
  width: 650px;
  height: 300px;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 红色边框仅作提示 */
  border: 2px solid red;
}

span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: white;
  animation: loading 2s linear infinite alternate;
}

@keyframes loading {
  0% {
    box-shadow: 0 0, 0 0;
    color: rgba(255, 255, 255, .2)
  }
  100% {
    box-shadow: -64px 0, 64px 0;
    color: rgba(255, 255, 255, .8)
  }
}

原理详解

步骤1

使用span标签,设置

  • 宽度、高度均为48px
  • 背景色:白色

效果图如下

在这里插入图片描述

步骤2

span标签圆角化

border-radius: 50%;

效果图如下

在这里插入图片描述

步骤3

为span添加动画,利用box-shadow(阴影)

关键帧

  • 初始位置:阴影1、2位于与span重合的地方(0,0),颜色为 color: rgba(255, 255, 255, .2)
  • 最后位置:阴影1位于span正左方64px,大小与span一样,只是颜色较浅;阴影2位于span正右方64px,大小与span一样,只是颜色较浅。颜色均为rgba(255, 255, 255, .8)

初始位置效果图(0%):

在这里插入图片描述

末尾位置效果图(100%):


在这里插入图片描述

代码:

animation: loading 2s linear infinite alternate;
@keyframes loading {
  0% {
    box-shadow: 0 0, 0 0;
    color: rgba(255, 255, 255, .2)
  }
  100% {
    box-shadow: -64px 0, 64px 0;
    color: rgba(255, 255, 255, .8)
  }
}

最终产生的效果图如下

在这里插入图片描述

你可能感兴趣的:(【HTML+CSS】043.自定义加载动画(学习打卡!))