我正在使用sketch.js库在画布上绘制一些东西。基本上,我需要的是默认画笔大小对我来说似乎很大。我想更改默认画笔大小。请帮忙。我已经看过此链接http://intridea.github.io/sketch.js/,但是在单击“锚”选项卡后,此链接上的描述仍然有效。我想默认更改大小。任何帮助表示赞赏。

最佳答案

在sketch.js文件中的某处有一段代码,您可以在其中更改默认大小。

Sketch = (function() {
function Sketch(el, opts) {
  this.el = el;
  this.canvas = $(el);
  this.context = el.getContext('2d');
  this.options = $.extend({
    toolLinks: true,
    defaultTool: 'marker',
    defaultColor: '#000000',
    defaultSize: 5 //<<< here you can change the default size
  }, opts);

09-20 19:16