您所在的位置:首页 - 生活 - 正文生活
编程怎样做
六斤
2024-04-24
【生活】
209人已围观
摘要标题:用编程方式祝福新春快乐```html用编程方式祝福新春快乐body{font-family:Arial,sans-serif;text-align:center;background-color
用编程方式祝福新春快乐
```html
body {
fontfamily: Arial, sansserif;
textalign: center;
backgroundcolor: f0f0f0;
margin: 0;
padding: 0;
}
h1 {
color: 333;
margintop: 50px;
}
p {
color: 666;
margintop: 20px;
}
firework {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
zindex: 1;
}

新春快乐!
让我们用编程的方式迎接新年的到来吧!
const canvas = document.getElementById('firework');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
function random(min, max) {
return Math.random() * (max min) min;
}
class Firework {
constructor() {
this.x = random(0, canvas.width);
this.y = canvas.height;
this.radius = random(2, 4);
this.color = `hsl(${random(0, 360)}, 100%, 50%)`;
this.velocity = {
x: random(1, 1),
y: random(20, 15)
};
this.gravity = 0.2;
this.life = true;
}
draw() {
ctx.beginPath();
ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2);
ctx.fillStyle = this.color;
ctx.fill();
}
update() {
this.draw();
this.x = this.velocity.x;
this.y = this.velocity.y;
this.velocity.y = this.gravity;
if (this.y <= 0) {
this.life = false;
}
}
}
const fireworks = [];
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
fireworks.forEach((firework, index) => {
firework.update();
if (!firework.life) {
fireworks.splice(index, 1);
}
});
if (fireworks.length < 10 && Math.random() < 0.03) {
fireworks.push(new Firework());
}
requestAnimationFrame(animate);
}
animate();