简体   繁体   中英

fabric.js: 4.2 control does not show when select object

I'm just download fabric.js from http://fabricjs.com/build/ with select all and just simple code as below.

var canvas = new fabric.Canvas('c');
var rect = new fabric.Rect({ width: 79, height: 59, left: 190, top: 100, fill: '#f55', strokeWidth: 1, stroke: 'black' });
canvas.add(rect);

There is no rotate and resize control at all and also

canvas.item(0).set({
borderColor: 'red',
cornerColor: 'green',
cornerSize: 6
})

would not work. Any suggestion for this case?

The build look like to be broken, you can download fabric.js with npm ( https://www.npmjs.com/package/fabric ) or download the release from the github page: https://github.com/fabricjs/fabric.js/releases/tag/v4.2.0

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM