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();
}
Я пытаюсь сделать так, чтобы при нажатии кнопки вы могли изменить штрих-стиль на другой цвет.