function draw(e){
if (e.buttons !== 1) return;
ctx.beginPath();
ctx.lineWidth = 100;
ctx.lineCap = 'round';
ctx.strokeStyle = "white";
ctx.moveTo(DefaultPos.x, DefaultPos.y);
setPosition(e);
ctx.lineTo(DefaultPos.x, DefaultPos.y);
ctx.stroke();
}
我试图拥有它,当您单击一个按钮时,您便可以将strokeStyle更改为其他颜色。