33.丰富多彩的发光液体碗动画特效

效果 (源码网盘地址在最后)

在这里插入图片描述

源码

index.html

<!DOCTYPE html>
<html>
<head>
<title>Colorful Glowing Liquid</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<section>
		<div class="shadow"></div>
		<div class="bowl">
			<div class="liquid"></div>
		</div>
	</section>
</body>
</html>

css

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section 
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #121212;
}
.bowl 
{
    position: relative;
    width: 300px;
    height: 300

猜你喜欢

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