构建一个Ionic应用程序并在其中使用织物画布。需要在画布上使用双击事件,但iOS设备无法正常运行'mouse:dblclick'事件,但在iOS设备上不会触发该事件。使用离子3。
this.canvas = new fabric.Canvas('can').set({
backgroundColor: '#ffffff',
selection: false,
perPixelTargetFind: true,
targetFindTolerance: 70,
background: 'white',
enableRetinaScaling: false
});
this.canvas.on('mouse:dblclick', (e1) => {
console.log('double clicked', e1);
}