如何用流星雨代码写父亲节快乐
时间: 2023-12-31 21:05:53 浏览: 102
以下是一个简单的流星雨代码,用于在屏幕上显示“父亲节快乐”的信息:
```html
<html>
<head>
<title>父亲节快乐</title>
<style>
body {
background-color: black;
}
.star {
position: absolute;
background-color: white;
border-radius: 50%;
opacity: 0;
animation: shooting-star 1s linear infinite;
}
@keyframes shooting-star {
from {
transform: translate(-500px, -500px);
opacity: 1;
}
to {
transform: translate(100%, 100%);
opacity: 0;
}
}
</style>
</head>
<body>
<script>
function createStar() {
let star = document.createElement("div");
star.className = "star";
star.style.top = Math.random() * window.innerHeight + "px";
star.style.left = Math.random() * window.innerWidth + "px";
document.body.appendChild(star);
setTimeout(() => { star.remove() }, 1000);
}
setInterval(createStar, 100);
</script>
<h1 style="color: white; text-align: center; margin-top: 50vh;">父亲节快乐!</h1>
</body>
</html>
```
这个代码使用了HTML、CSS和JavaScript来创建一个简单的流星雨效果,以及一个居中的标题标签 `<h1>` 来显示“父亲节快乐”的信息。当您在浏览器中打开这个HTML文件时,它将显示一个黑色背景,带有不断飞过的白色流星,以及一个居中的白色标题。
阅读全文