infinite-canvas-tutorial icon indicating copy to clipboard operation
infinite-canvas-tutorial copied to clipboard

A tutorial on infinite canvas

Results 20 infinite-canvas-tutorial issues
Sort by recently updated
recently updated
newest added

Unlike Figma exporter, for simple inline text, we can use `` and inlined CSS style. https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text#example ```html .small { font: italic 13px sans-serif; } My ``` The following properties should...

If we want to place a paragraph in a container, keeping it centered horizontally and vertically: ```ts const container = new Rect({ x: 0, y: 0, width: 100, height: 100,...

Re-assign `fillStyle` after rendered: ```ts roughShape.fillStyle = 'dots'; ```

bug

处理输入的模块什么时候出啊

question

比如 Echart G2 这样的 canvas 并调用其内部的接口 好像不能,只能把它们当作图片嵌入进去

question

```ts const rect = new RoughRect({ x: 50, y: 50, width: 100, height: 100, fill: 'black', fillStyle: 'dots' }); ``` ``` RangeError: Maximum call stack size exceeded ```

bug