首页 前端知识 两种雪花的动态效果代码,分别使用HTML/CSS和JavaScript实现

两种雪花的动态效果代码,分别使用HTML/CSS和JavaScript实现

2024-02-14 09:02:07 前端知识 前端哥 503 123 我要收藏
  1. 使用HTML/CSS实现雪花动态效果

 

html复制代码

<!DOCTYPE html>
<html>
<head>
<style>
.snowflake {
position: absolute;
top: 0;
background: white;
height: 5px;
width: 5px;
border-radius: 50%;
opacity: 0.7;
filter: blur(2px);
animation: fall linear infinite;
}
@keyframes fall {
to {
transform: translateY(100vh);
}
}
</style>
</head>
<body>
<div id="snowflakes"></div>
<script>
const snowflakesContainer = document.getElementById('snowflakes');
const numberOfSnowflakes = 100;
for (let i = 0; i < numberOfSnowflakes; i++) {
const snowflake = document.createElement('div');
snowflake.classList.add('snowflake');
snowflake.style.left = `${Math.random() * 100}vw`;
snowflake.style.animationDuration = `${Math.random() * 3 + 2}s`;
snowflake.style.animationDelay = `${Math.random() * 5}s`;
snowflakesContainer.appendChild(snowflake);
}
</script>
</body>
</html>

这段代码会在页面上生成100个雪花,每个雪花都会沿着屏幕垂直方向下落。雪花的初始位置、下落速度和延迟时间都是随机的,以创建更自然的效果。你可以根据需要调整雪花的数量、大小和下落速度。

  1. 使用JavaScript实现雪花动态效果(使用canvas)

 

html复制代码

<!DOCTYPE html>
<html>
<head>
<style>
canvas {
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<canvas id="snowCanvas"></canvas>
<script>
const canvas = document.getElementById('snowCanvas');
const ctx = canvas.getContext('2d');
const numberOfSnowflakes = 100;
const snowflakes = [];
class Snowflake {
constructor() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 5 + 2;
this.speed = Math.random() * 1 + 0.5;
}
update() {
this.y += this.speed;
if (this.y > canvas.height) {
this.y = 0;
}
}
draw() {
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
}
}
function init() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
for (let i = 0; i < numberOfSnowflakes; i++) {
snowflakes.push(new Snowflake());
}
animate();
}
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
snowflakes.forEach(snowflake => {
snowflake.update();
snowflake.draw();
});
requestAnimationFrame(animate);
}
init();
</script>
</body>
</html>
转载请注明出处或者链接地址:https://www.qianduange.cn//article/1986.html
标签
评论
发布的文章

jQuery 下载与安装教程

2024-02-28 11:02:44

若依中jquey相关问题

2024-02-28 11:02:41

【JavaWeb】1.JQuery

2024-02-28 11:02:21

jQuery日历签到插件下载

2024-02-28 11:02:20

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!