圣诞树html网页代码3d粒子
时间: 2023-12-17 17:29:14 浏览: 420
圣诞树html网页代码.zip
以下是一个使用HTML5和JavaScript编写的3D圣诞树粒子效果的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
charset="UTF-8">
<title>3D圣诞树粒子效果</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #000;
overflow: hidden;
}
canvas {
display: block;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script>
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var W = window.innerWidth;
var H = window.innerHeight;
canvas.width = W;
canvas.height = H;
var mp = 25; // 最大粒子数
var particles = [];
for(var i = 0; i < mp; i++) {
particles.push({
x: Math.random()*W, // 粒子的x坐标
y: Math.random()*H, // 粒子的y坐标
r: Math.random()*4+1, // 粒子的半径
d: Math.random()*mp // 粒子的密度
})
}
function draw() {
ctx.clearRect(0, 0, W, H);
ctx.fillStyle = 'rgba(255, 255, 255, 0.8)';
ctx.beginPath();
for(var i = 0; i < mp; i++) {
var p = particles[i];
ctx.moveTo(p.x, p.y);
ctx.arc(p.x, p.y, p.r, 0, Math.PI*2, true);
}
ctx.fill();
update();
}
var angle = 0;
function update() {
angle += 0.01;
for(var i = 0; i < mp; i++) {
var p = particles[i];
p.y += Math.cos(angle+p.d) + 1 + p.r/2;
p.x += Math.sin(angle) * 2;
if(p.x > W+5 || p.x < -5 || p.y > H) {
if(i%3 > 0) {
particles[i] = {x: Math.random()*W, y: -10, r: p.r, d: p.d};
} else {
if(Math.sin(angle) > 0) {
particles[i] = {x: -5, y: Math.random()*H, r: p.r, d: p.d};
} else {
particles[i] = {x: W+5, y: Math.random()*H, r: p.r, d: p.d};
}
}
}
}
}
setInterval(draw, 33);
</script>
</body>
</html>
```
阅读全文