├── samples ├── assets │ └── images │ │ ├── car-engine.jpg │ │ └── motorcycle-engine.jpg ├── translation │ └── index.html ├── element │ └── index.html ├── visualize │ └── index.html └── main │ └── index.html ├── README.md ├── LICENSE └── src ├── draw-maker.element.js ├── assets └── translations │ ├── draw-maker.es-PY.js │ └── draw-maker.pt-BR.js └── draw-maker.js /samples/assets/images/car-engine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpecenin/draw-maker/HEAD/samples/assets/images/car-engine.jpg -------------------------------------------------------------------------------- /samples/assets/images/motorcycle-engine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpecenin/draw-maker/HEAD/samples/assets/images/motorcycle-engine.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # draw-maker 2 | Fabric.js visual editor to draw over images 3 | 4 | ## Demos/Samples 5 | 1. [main](samples/main/index.html) [(preview)](https://mpecenin.github.io/draw-maker/samples/main/index.html) 6 | 2. [visualize](samples/visualize/index.html) [(preview)](https://mpecenin.github.io/draw-maker/samples/visualize/index.html) 7 | 3. [element](samples/element/index.html) [(preview)](https://mpecenin.github.io/draw-maker/samples/element/index.html) 8 | 4. [translation](samples/translation/index.html) [(preview)](https://mpecenin.github.io/draw-maker/samples/translation/index.html) 9 | -------------------------------------------------------------------------------- /samples/translation/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |