效果展示
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;
/* background-color: #82466e; */
animation: backColor 4s infinite;
}
section {
width: 650px;
height: 300px;
padding: 10px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid white;
}
span {
width: 24px;
height: 24px;
box-shadow: 0 30px, 0 -30px;
border-radius: 4px;
background: currentColor;
display: inline-block;
position: relative;
color: white;
left: -30px;
animation: loading 2s ease infinite;
}
span::before, span::after {
content: '';
width: 24px;
height: 24px;
box-shadow: 0 30px, 0 -30px;
border-radius: 4px;
background: currentColor;
color: whites;
position: absolute;
left: 30px;
top: 0;
/* animation: loading 2s 0.2s ease infinite; */
}
span::after {
animation-delay: 0.4s;
left: 60px;
}
@keyframes loading {
0% {
top: 0;
color: rgba(255, 255, 255, 1)
}
50% {
top: 30px;
color: rgba(255, 255, 255, 0.2)
}
100% {
top: 0;
color: rgba(255, 255, 255, 1)
}
}
原理詳解
步驟1
使用span標(biāo)簽沿侈,設(shè)置為
- 相對(duì)定位
- 寬度、高度均為24px
- 背景色:currentColor
- color:白色
- border-radius: 4px
span {
width: 24px;
height: 24px;
border-radius: 4px;
background: currentColor;
position: relative;
color: white;
}
效果圖如下
為什么背景色需要設(shè)置為currentColor呢质礼?
首先需要知道currentColor屬性
currentColor代表了當(dāng)前元素被應(yīng)用上的color顏色值旺聚。 使用它可以將當(dāng)前這個(gè)顏色值應(yīng)用到其他屬性上,或者嵌套元素的其他屬性上眶蕉。
?
簡(jiǎn)單理解:
CSS里可以在任何需要寫顏色的地方使用currentColor這個(gè)變量砰粹,這個(gè)變量的值是當(dāng)前元素的color值。 如果當(dāng)前元素沒(méi)有在CSS里顯示地指定一個(gè)color值造挽,那它的顏色值就遵從CSS規(guī)則碱璃,從父級(jí)元素繼承而來(lái)。
在這里設(shè)置了span的color屬性為白色刽宪,所以背景色也就是color屬性的值:白色
設(shè)置color為白色是為了使得陰影為白色(之后會(huì)使用span的陰影)
在后面步驟中將說(shuō)明如果不使用currentColor而直接使用white(白色)出現(xiàn)的情況
步驟2
使用box-shadow為span添加兩個(gè)陰影
位置分別位于span上方和下方
box-shadow: 0 30px,/*陰影1*/
0 -30px; /*陰影2*/
效果圖如下
步驟3
將span左移30px
span {
left: -30px;
}
效果圖如下
步驟4
使用span::before厘贼、span::after偽元素
設(shè)置為
- 絕對(duì)定位( left: 30px top: 0)
- 寬度界酒、高度均為24px
- border-radius: 4px
- 背景色:currentColor
- color:白色
span::before, span::after {
content: '';
width: 24px;
height: 24px;
border-radius: 4px;
background: currentColor;
color: white;
position: absolute;
left: 30px;
top: 0;
}
效果圖如下
步驟5
為span::before圣拄、span::after添加兩個(gè)陰影
span::before, span::after {
box-shadow: 0 30px, 0 -30px;
}
效果圖如下
陰影位置圖:
步驟6
分離span::before、span::after
將span::after 再向右移動(dòng) 30px(因?yàn)槭墙^對(duì)定位毁欣,所以相對(duì)于span為向右60px)
span::after {
left: 60px;
}
效果圖如下
before和after位置關(guān)系圖:
步驟7
為span添加動(dòng)畫
效果描述為
- 第一幀:初始位置
- 第二幀:向下移動(dòng)30px 同時(shí)顏色透明級(jí)別由1變?yōu)?.2
- 第三幀:回到最初位置
動(dòng)畫說(shuō)明:
使用top設(shè)置變量實(shí)現(xiàn)span的豎直方向移動(dòng)
動(dòng)畫持續(xù)時(shí)間:2s
速度曲線:ease
無(wú)限循環(huán)
代碼為:
span {
animation: loading 2s ease infinite;
}
@keyframes loading {
0% {
top: 0;
color: rgba(255, 255, 255, 1)
}
50% {
top: 30px;
color: rgba(255, 255, 255, 0.2)
}
100% {
top: 0;
color: rgba(255, 255, 255, 1)
}
}
效果圖如下
注意:此時(shí)span::before和span::after也是和span一起運(yùn)動(dòng) 只是顏色不會(huì)發(fā)生變化 因?yàn)閎efore和after的位置關(guān)系是相對(duì)于span的絕對(duì)定位
步驟8
為span::before和span::after添加同樣的動(dòng)畫
延遲0.2s執(zhí)行
span::before, span::after {
animation: loading 2s 0.2s ease infinite;
}
效果圖如下
步驟9
將span::after動(dòng)畫延遲設(shè)置為0.4s
span::after {
animation-delay: 0.4s;
}
效果圖如下
疑問(wèn)解答
如果將span庇谆、span::before岳掐、span::after的背景色不設(shè)置為currentColor,而是直接設(shè)置為white(白色)
效果則是
可以發(fā)現(xiàn)span饭耳、span::before串述、span::after的顏色一直都是白色,沒(méi)有發(fā)生變化
這是因?yàn)樵趧?dòng)畫中設(shè)置的顏色變化是color屬性寞肖,而不是背景色(background-color)屬性纲酗,所以動(dòng)畫發(fā)生時(shí),span新蟆、span::before觅赊、span::after的顏色一直都會(huì)是設(shè)置的白色
為了使span、span::before琼稻、span::after的背景色也隨之變化吮螺,故使用currentColor參數(shù),使得span帕翻、span::before鸠补、span::after的背景色保持和color屬性值一致,color變化嘀掸,背景色也隨之變化紫岩,實(shí)現(xiàn)目標(biāo)效果