戈壁星空夜色效果
代码语言:html
所属分类:布局界面
代码描述:戈壁星空夜色效果
代码标签: 效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
background: linear-gradient(#0f1a2b, #411d63);
}
.moon {
width: 100px;
height: 100px;
border-radius: 50%;
background: #ffffdd;
box-shadow: inset -11px -8px 0px 4px #feffa2,
0px 0px 10px 0px #feffa2,
0px 0px 50px 0px #feffa2,
0px 0px 500px 0px #feffa2;
display: inline-block;
position: relative;
top: 10%;
left: 10%;
animation: 3s moonglow ease-in-out infinite alternate;
}
.crater {
position: absolute;
background: rgba(255, 244, 118, 1);
border-radius: 50%;
box-shadow: inset 1px 1px 0px 1px #ecec79;
}
.crater:nth-child(1) {
width: 25px;
height: 25px;
top: 57%;
left: 30%;
}
.crater:nth-child(2) {
width: 16px;
height: 16px;
top: 30%;
left: 23%;
}
.crater:nth-child(3) {
width: 12px;
height: 12px;
top: 50%;
left: 14%;
}
.crater:nth-child(4) {
width: 30px;
height: 30px;
top: 20%;
left: 30%;
box-shadow: none;
background: rgba(255, 244, 118, 0.3);
}
.ground {
position: absolute;
left: 0;
bottom: 0;
width: 10.........完整代码请登录后点击上方下载按钮下载查看
网友评论0