好看的星空代码 html 文件
时间: 2023-10-27 14:03:18 浏览: 176
下面是一个简单的HTML代码,用于创建一个具有浏览器中好看星空效果的网页:
```html
<!DOCTYPE html>
<html>
<head>
<title>好看的星空</title>
<style>
body {
margin: 0;
padding: 0;
}
#stars {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.star {
position: absolute;
background: white;
border-radius: 50%;
}
</style>
</head>
<body>
<div id="stars"></div>
<script>
function createStar() {
const star = document.createElement("div");
star.className = "star";
const size = Math.random() * 15;
star.style.width = 1 + size + "px";
star.style.height = 1 + size + "px";
star.style.left = Math.random() * innerWidth + "px";
star.style.top = Math.random() * innerHeight + "px";
const duration = Math.random() * 10;
star.style.animationDuration = 5 + duration + "s";
star.style.animationDelay = -duration + "s";
document.getElementById("stars").appendChild(star);
}
for (let i = 0; i < 200; i++) {
createStar();
}
</script>
</body>
</html>
```
这段代码创建了一个星空效果的页面。通过CSS设置了整个页面的背景均为黑色,并在页面上方创建了一个固定位置、占据整个页面的div元素用于放置星星,使其看起来是背景中的星空。
JS部分用于动态地创建星星元素并设置其样式。每颗星星的大小、位置和动画参数都通过随机数来确定,使星空看起来更加随机和真实。
通过运行这段代码,你将会看到一个带有动态闪烁的星空背景效果的网页。
阅读全文