css filter滤镜实现地球效果
代码语言:html
所属分类:布局界面
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background: #000;
height: 100vh;
display: -webkit-box;
display: flex;
color: white;
z-index: 1;
position: relative;
overflow: hidden;
}
body > *,
body > *:after {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.cc {
width: 40vw;
height: 40vw;
border-radius: 50%;
}
.layer-1 {
color: teal;
background: linear-gradient(teal, #cbb4d4 70%), linear-gradient(135deg, whi.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0