06.快速的CSS动画
Posted @大迁世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了06.快速的CSS动画相关的知识,希望对你有一定的参考价值。
效果
源码
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Glowing Dots Animation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="loader">
<div class="circle" style="--clr:#04fc43;"></div>
<div class="circle circle2" style="--clr:#fee800;"></div>
<div class="circle circle3" style="--clr:#ff00be;"></div>
</div>
</body>
</html>
css
*
margin: 0;
padding: 0;
box-sizing: border-box;
body
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
b
以上是关于06.快速的CSS动画的主要内容,如果未能解决你的问题,请参考以下文章