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

猜你喜欢

转载自blog.csdn.net/qq449245884/article/details/128501537