我借助来自 mudcu 的脚本 sketch.js 创建了一个简单的绘画应用程序。
我在代码中进行了一些更改,但现在我遇到了触发设置铅笔颜色的函数的问题。
var Sketch = function(config) { "use strict";
var that = this;
...........
var ctx2 = layer2d[2];
// Style object.
this.zoom = 1;
this.style = {
tool: "brush",
globalAlpha: 1,
globalCompositeOperation: "source-over",
strokeStyle: "#000",
lineWidth: 5,
lineCap: "round",
lineJoin: "round"
我的问题是当用户单击按钮时,如何将“this.style”strokeStyle 设置为例如“#D55151”?