jcrop3
Version:
The Javascript cropping widget
24 lines (18 loc) • 365 B
Markdown
<example3 />
```js
import Jcrop from 'jcrop';
class SvgWidget extends Jcrop.Widget {
init () {
super.init();
const img = new Image();
img.src = 'https://d3o1694hluedf9.cloudfront.net/img/js.svg';
this.el.appendChild(img);
}
}
Jcrop.attach('target',{
aspectRatio: 1,
widgetConstructor: SvgWidget
});
```