canvas可以实现不同动画效果,本文主要记录几种不同节日烟花效果实现。
实现一
html
css
body {
background: #000;
margin: 0;
}
canvas {
cursor: crosshair;
display: block;
}
js
// when animating on canvas, it is best to use requestAnimationFrame instead of setTimeout or setInterval
// n
2025-06-11 10:18:32
218KB
canvas
1