效果展示 - 1
在这里插入图片描述
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><span></span></section>
</body>
</html>
CSS
html, body {
margin: 0;
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: #ed556a;
}
section {
width: 650px;
height: 300px;
padding: 10px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid white;
}
span {
width: 48px;
height: 48px;
display: inline-block;
position: relative;
background: white;
animation: loading 3s linear infinite;
}
@keyframes loading {
/*先x轴翻转180度 后y轴翻转180度*/
0% {
transform: perspective(200px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
}
100% {
transform: perspective(200px) rotateX(-180deg) rotateY(-180deg)
}
}
原理详解
步骤1
使用span标签,设置为
- 宽度、高度均为48px
- 背景色:白色
width: 48px;
height: 48px;
background: white;
效果图如下
在这里插入图片描述
步骤2
为span添加动画
- 先绕x轴翻转180度
- 后绕y轴翻转180度
@keyframes loading {
/*先x轴翻转180度 后y轴翻转180度*/
0% {
transform: perspective(200px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
}
100% {
transform: perspective(200px) rotateX(-180deg) rotateY(-180deg)
}
}
效果图如下
在这里插入图片描述
效果展示 - 2
在这里插入图片描述
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><span></span></section>
</body>
</html>
CSS
html, body {
margin: 0;
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: #ed556a;
}
section {
width: 650px;
height: 300px;
padding: 10px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid white;
}
span {
width: 48px;
height: 96px;
display: inline-block;
position: relative;
color: white;
border: 3px solid;
animation: loading 2s linear infinite alternate;
}
span::before {
content: '';
position: absolute;
top: -15px;
left: 6px;
width: 36px;
height: 12px;
background-color: white;
}
@keyframes loading {
0% {
box-shadow: 0 0 inset
}
100% {
box-shadow: 0 -96px inset
}
}
原理详解
步骤1
使用span标签,设置为
- 相对定位
- 宽度48px,高度96px
- 边框:3px solid 白色
- color:白色
span {
width: 48px;
height: 96px;
position: relative;
color: white;
border: 3px solid;
}
效果图如下
在这里插入图片描述
步骤2
利用span::before伪元素,充当最上方白色方块
设置为
- 绝对定位(top -15px,left 6px)
- 宽度:36px
- 高度:12px
- 背景色:白色
span::before {
content: '';
position: absolute;
top: -15px;
left: 6px;
width: 36px;
height: 12px;
background-color: white;
}
效果图如下
在这里插入图片描述
注:
- top是-15px,是因为上方白色方块宽度12px,还需要加上下方白色边框3px,一共12+3=15px
- left为6px,是因为要使上方白色方块居中,需要向左移动(48-36)/2=6px
步骤3
使用span的阴影(box-shadow)作为动画
需要实现的效果:逐渐填充下方白色部分内部
- 阴影向内
以动画中的几帧说明:
当阴影向内延伸10px时
span {
box-shadow: 0 -10px inset
}
效果图如下
在这里插入图片描述
当阴影向内延伸48px时
span {
box-shadow: 0 -48px inset
}
效果图如下
在这里插入图片描述
当阴影向内延伸96px时
span {
box-shadow: 0 -96px inset
}
效果图如下
在这里插入图片描述
综上:阴影向内从0延伸96px,重复即可
animation: loading 2s linear infinite ;
@keyframes loading {
0% {
box-shadow: 0 0 inset
}
100% {
box-shadow: 0 -96px inset
}
}
效果图如下
在这里插入图片描述
步骤4
设置动画交替进行
animation: loading 2s linear infinite alternate;
效果图如下
在这里插入图片描述