我正在使用粒子js。
我可以创建粒子效果。
如图所示http://jsfiddle.net/hdH7b/
我遇到的问题是为单个粒子设置方向。如果你看一下你会看到的代码
direction: 0; // initial start direction
directionVariance: 45, // +/- direction (random)
将所有粒子设置为向0方向移动,向上/向左/向右45/45度方差。
我想要的是单独控制每个粒子。我这样做是
onDraw: function(p) {} // onDraw passes in the current particle and is called before each particle is displayed on the screen.
这适用于其他变量,例如
onDraw: function (p) {
var y = -this.age * 3;
p.size *= 0.98;
p.color = 'rgb(255, ' + (y + 255) + ', 68)';
p.opacity = 0.5 - (p.age / p.life * 0.4);
}
但我无法使用p.direction。
感谢您的帮助