fabric都是通过监控滚轮事件,mouse:wheel,通过确定中心点,放大缩小,核心代码如下
this.zoomPoint = new fabric.Point(e.pointer.x, e.pointer.y); // 中心点
this.fabricObj.zoomToPoint(
版权声明:本文为jamesclark原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
fabric都是通过监控滚轮事件,mouse:wheel,通过确定中心点,放大缩小,核心代码如下
this.zoomPoint = new fabric.Point(e.pointer.x, e.pointer.y); // 中心点
this.fabricObj.zoomToPoint(