前言
Hello桨醋!小伙伴!
首先非常感謝您閱讀海轟的文章,倘若文中有錯誤的地方,歡迎您指出~
哈哈 自我介紹一下
昵稱:海轟
標(biāo)簽:程序猿一只|C++選手|學(xué)生
簡介:因C語言結(jié)識編程擦剑,隨后轉(zhuǎn)入計算機(jī)專業(yè),有幸拿過國獎芥颈、省獎等惠勒,已保研。目前正在學(xué)習(xí)C++/Linux(真的真的太難了~)
學(xué)習(xí)經(jīng)驗:扎實基礎(chǔ) + 多做筆記 + 多敲代碼 + 多思考 + 學(xué)好英語爬坑!
效果展示
在這里插入圖片描述
思路
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: #263238;
}
section {
width: 650px;
height: 300px;
padding: 10px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
/* 紅色邊框僅作提示 */
border: 2px solid red;
}
span{
width : 96px;
height: 96px;
border: 10px solid ;
border-color: white white transparent transparent;
border-radius: 50%;
position: relative;
animation: rotation 2s linear infinite;
}
span::before{
position: absolute;
content: '';
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
width: 56px;
height: 56px;
border: 10px solid;
border-color: transparent transparent red red;
border-radius: 50%;
/* 注意這里的時間 */
animation: rotationback 1s linear infinite;
}
span::after{
position: absolute;
content: '';
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
width: 24px;
height: 24px;
border: 10px solid;
border-radius: 50%;
border-color: white white transparent transparent;
/* 注意這里的時間 */
animation: rotation 3s linear infinite;
}
@keyframes rotation {
0% { transform: rotate(0deg) }
100% { transform: rotate(360deg)
}
}
@keyframes rotationback {
0% { transform: rotate(360deg) }
100% { transform: rotate(0deg)
}
}
原理詳解
步驟1
利用span標(biāo)簽纠屋,生成一個正方形
- 寬度、高度均為96px
- 邊框:10px solid ;
width : 96px;
height: 96px;
border: 10px solid ;
效果圖如下
在這里插入圖片描述
步驟2
上/右邊框顏色設(shè)置為白色盾计,下/左邊框顏色為透明
border-color: white white transparent transparent;
效果圖如下
在這里插入圖片描述
步驟3
設(shè)置span::before偽類
- 絕對定位
- 寬度售担、高度均為56px
- 邊框:10px solid
- 位于span正中央(上下左右居中)
position: absolute;
content: '';
/* 上下左右居中 絕對定位時*/
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
width: 56px;
height: 56px;
border: 10px solid;
效果圖如下
在這里插入圖片描述
步驟4
span::before設(shè)置邊框顏色
- 下/左邊框顏色為紅色
- 上/右邊框顏色為透明
border-color: transparent transparent red red;
效果圖如下
在這里插入圖片描述
步驟5
設(shè)置span::after元素
- 寬度符欠、高度均為24px
- 邊框:10px solid
- 絕對定位
- 位于span正中央(上下左右居中)
position: absolute;
content: '';
/*上下左右居中*/
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
width: 24px;
height: 24px;
border: 10px solid;
效果圖如下
在這里插入圖片描述
步驟6
設(shè)置span::after的邊框顏色
- 上/右邊框顏色為白色
- 下/左邊框顏色為透明
border-color: white white transparent transparent;
效果圖如下
在這里插入圖片描述
步驟7
對span仅胞、span::before、span::after圓角化
border-radius: 50%;
效果圖如下
在這里插入圖片描述
步驟8
為span添加動畫
- 順時針 2s 無限循環(huán)
animation: rotation 2s linear infinite;
@keyframes rotation {
0% { transform: rotate(0deg) }
100% { transform: rotate(360deg)
}
}
效果圖如下
在這里插入圖片描述
步驟9
為span::before添加動畫
- 逆時針 1s 無限循環(huán)
animation: rotationback 1s linear infinite;
@keyframes rotationback {
0% { transform: rotate(360deg) }
100% { transform: rotate(0deg)
}
}
效果圖如下
在這里插入圖片描述
步驟10
為span::after添加動畫
- 順時針 3s 無限循環(huán)
animation: rotation 3s linear infinite;
@keyframes rotationback {
0% { transform: rotate(360deg) }
100% { transform: rotate(0deg)
}
}
效果圖如下
在這里插入圖片描述
結(jié)語
學(xué)習(xí)來源:
文章僅作為學(xué)習(xí)筆記恭朗,記錄從0到1的一個過程哭尝。希望對您有所幫助哥攘,如有錯誤歡迎小伙伴指正~
我是海轟?(?ˊ?ˋ)?,如果您覺得寫得可以的話材鹦,請點(diǎn)個贊吧
寫作不易逝淹,「點(diǎn)贊」+「收藏」+「轉(zhuǎn)發(fā)」
謝謝支持??