1.1.15 • Published 7 years ago
free-draw v1.1.15
English | 简体中文
Free-Draw
Free draw with canvas! Rectangle, circle, ellipse and polygon. Support zoom and offset!
Installation
Using npm:
$ npm i -g npm
$ npm i free-drawUsage
HTML:
<canvas id="canvas" width="800" height="600"></canvas>JS:
<script>
import FreeDraw from 'free-draw'
const freeDraw = new FreeDraw({ canvas: document.getElementById('canvas') })
const rect = freeDraw.addShape({ id: 'rect-1', type: 'rect', startPoint: [50, 50], width: 100, height: 200 });
</script>API Document
Class - FreeDraw(options)
options {Object}:
- canvas: DOM Element
required - eventsCallBack: {Function} Events hook function
- eventsReceive: {Array} <
mouseenter|mouseleave|mousemove|keydown|drag>
- canvas: DOM Element
Returns: FreeDraw {Object}
Usage:
const freeDraw = new FreeDraw({ canvas: document.getElementById('canvas') })Object - freeDraw
- Attributes
- canvas: DOM Element
required - eventsCallBack: {Function} Events hook function
- eventsReceive: {Array} <
mouseenter|mouseleave|mousemove|keydown|drag> - model: {String} Current model <
view|edit> - editingId: {String} Current editing shape id
- shapeInCanvas: {Object} Shapes in cavas
- canvas: DOM Element
1.1.15
7 years ago
1.1.14
7 years ago
1.1.13
7 years ago
1.1.12
7 years ago
1.1.11
7 years ago
1.1.10
7 years ago
1.1.9
7 years ago
1.1.8
7 years ago
1.1.7
7 years ago
1.1.6
7 years ago
1.1.5
7 years ago
1.1.4
7 years ago
1.1.3
7 years ago
1.1.2
7 years ago
1.1.1
7 years ago
1.1.0
7 years ago
1.0.29
7 years ago
1.0.28
7 years ago
1.0.27
7 years ago
1.0.26
7 years ago
1.0.25
7 years ago
1.0.24
7 years ago
1.0.23
7 years ago
1.0.22
7 years ago
1.0.21
7 years ago
1.0.20
7 years ago
1.0.19
7 years ago
1.0.18
7 years ago
1.0.17
7 years ago
1.0.16
7 years ago
1.0.15
7 years ago
1.0.14
7 years ago
1.0.13
7 years ago
1.0.12
7 years ago
1.0.11
7 years ago
1.0.10
7 years ago
1.0.9
7 years ago
1.0.8
7 years ago
1.0.7
7 years ago
1.0.6
7 years ago
1.0.5
7 years ago
1.0.4
7 years ago
1.0.3
7 years ago
1.0.2
7 years ago
1.0.1
7 years ago
1.0.0
7 years ago