我正在使用此处提供的.js粒子地面演示:http://jnicol.github.io/particleground/
我设法摆脱了线条并只显示了点,但是,我想将点改为十字形,加号+。
我已经隔离了以下在此处绘制圆圈的代码:
Particle.prototype.draw = function() {
// Draw circle
ctx.beginPath();
ctx.arc(this.position.x + this.parallaxOffsetX, this.position.y + this.parallaxOffsetY, options.particleRadius / 2, 0, Math.PI * 2, true);
ctx.closePath();
ctx.fill();
}
但我无法弄清楚如何让它画十字架或用加号字符替换圆圈
非常感谢......