div+css实现模糊彩色泡泡动画背景效果代码
代码语言:html
所属分类:背景
代码描述:div+css实现模糊彩色泡泡动画背景效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
html, body {
font-family: 'Dongle', sans-serif;
margin: 0;
padding: 0;
}
.text-container {
z-index: 100;
width: 100vw;
height: 100vh;
display: flex;
position: absolute;
top: 0;
left: 0;
justify-content: center;
align-items: center;
font-size: 96px;
color: white;
opacity: 0.8;
user-select: none;
text-shadow: 1px 1px rgba(0,0,0,0.1);
}
:root {
--color-bg1: rgb(108, 0, 162);
--color-bg2: rgb(0, 17, 82);
--color1: 18, 113, 255;
--color2: 221, 74, 255;
--color3: 100, 220, 255;
--color4: 200, 50, 50;
--color5: 180, 180, 50;
--color-interactive: 140, 100, 255;
--circle-size: 80%;
--blending: hard-light;
}
@keyframes moveInCircle {
0% {
transform: rotate(0deg);
}
50% {
transform:.........完整代码请登录后点击上方下载按钮下载查看
网友评论0