前言
Hello拒迅!小伙伴骚秦!
非常感謝您閱讀海轟的文章她倘,倘若文中有錯(cuò)誤的地方,歡迎您指出~
?自我介紹 ?(?ˊ?ˋ)?
昵稱:海轟
標(biāo)簽:程序猿|C++選手|學(xué)生
簡(jiǎn)介:因C語言結(jié)識(shí)編程作箍,隨后轉(zhuǎn)入計(jì)算機(jī)專業(yè)硬梁,有幸拿過國(guó)獎(jiǎng)、省獎(jiǎng)等胞得,已保研荧止。目前正在學(xué)習(xí)C++/Linux(真的真的太難了~)
學(xué)習(xí)經(jīng)驗(yàn):扎實(shí)基礎(chǔ) + 多做筆記 + 多敲代碼 + 多思考 + 學(xué)好英語!
?<font color="red" font-wight="800">【動(dòng)畫消消樂】</font> 平時(shí)學(xué)習(xí)生活比較枯燥懒震,無意之間對(duì)一些網(wǎng)頁(yè)罩息、應(yīng)用程序的過渡/加載動(dòng)畫產(chǎn)生了濃厚的興趣嗤详,想知道具體是如何實(shí)現(xiàn)的个扰? 便在空閑的時(shí)候?qū)W習(xí)下如何使用css實(shí)現(xiàn)一些簡(jiǎn)單的動(dòng)畫效果,文章僅供作為自己的學(xué)習(xí)筆記葱色,記錄學(xué)習(xí)生活递宅,爭(zhēng)取理解動(dòng)畫的原理,多多“消滅”動(dòng)畫苍狰!
效果展示
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: #222f3e;
}
section {
width: 650px;
height: 300px;
padding: 10px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid white;
}
span {
width: 100%;
height: 10px;
display: inline-block;
position: relative;
}
span::after {
content: '';
width: 96px;
height: 10px;
background: white;
position: absolute;
top: 0;
left: 0;
animation: loading 2s ease-in-out infinite alternate;
}
@keyframes loading {
0% {
left: 0;
transform: translateX(0%)
}
100% {
left: 100%;
transform: translateX(-100%)
}
}
原理詳解
步驟1
使用一個(gè)span標(biāo)簽
<span></span>
設(shè)置為
- 寬度100%
- 高度10px
- 相對(duì)定位
- 背景色:紅色
span {
width: 100%;
height: 10px;
position: relative;
background-color: red;
}
效果圖如下:
步驟2
使用span::after
設(shè)置為
- 寬度96px
- 高度:10px
- 背景色:白色
- 絕對(duì)定位(top: 0; left: 0;)
span::after {
content: '';
width: 96px;
height: 10px;
background: white;
position: absolute;
top: 0;
left: 0;
}
效果圖如下:
步驟3
為span::after添加動(dòng)畫
效果為
- 從左移動(dòng)至最右端 再返回
span::after {
animation: loading 2s ease-in-out infinite alternate;
}
@keyframes loading {
0% {
left: 0;
transform: translateX(0%)
}
100% {
left: 100%;
transform: translateX(-100%)
}
}
效果圖如下:
步驟4
注釋掉span的背景色
span {
/* background-color: red; */
}
得到最終效果圖:
結(jié)語
文章僅作為學(xué)習(xí)筆記办龄,記錄從0到1的一個(gè)過程
希望對(duì)您有所幫助,如有錯(cuò)誤歡迎小伙伴指正~
我是 <font color="#0984e3">海轟?(?ˊ?ˋ)?</font>
如果您覺得寫得可以的話淋昭,請(qǐng)點(diǎn)個(gè)贊吧
謝謝支持??