所以我一直在寻找和更改这个粒子系统上的代码一段时间了
我尝试使用以下方法计算粒子运动:
'left' : canvas_width * Math.floor(Math.random() * 101) / 100,
'top' : canvas_height * Math.floor(Math.random() * 101) / 100,
但到目前为止,只能让圆圈上下移动。
我想要做的是让圆圈(将在 CSS 中使用云图像)向上移动 - 向右移动,模拟从烟囱中冒出的烟雾。
有什么建议么?