【動(dòng)畫消消樂】HTML+CSS 自定義加載動(dòng)畫 057
效果展示

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軸翻轉(zhuǎn)180度 后y軸翻轉(zhuǎn)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標(biāo)簽,設(shè)置為
寬度、高度均為48px 背景色:白色
width: 48px;
height: 48px;
background: white;
效果圖如下

步驟2
為span添加動(dòng)畫
先繞x軸翻轉(zhuǎn)180度 后繞y軸翻轉(zhuǎn)180度
@keyframes loading {
/*先x軸翻轉(zhuǎn)180度 后y軸翻轉(zhuǎn)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)
}
}
效果圖如下

結(jié)語
希望對(duì)您有所幫助
如有錯(cuò)誤歡迎小伙伴指正~
我是 海轟?(?ˊ?ˋ)?
如果您覺得寫得可以的話
請(qǐng)點(diǎn)個(gè)贊吧
謝謝支持??
評(píng)論
圖片
表情
