当通过控件缩放对象时,分配一个centeredscaling 属性的真实值,变换的原点是其中心。
语法new fabric.triangle({ centeredscaling: boolean }: object)
参数选项(可选) - 此参数是一个对象 为我们的三角形提供额外的定制。使用此参数,可以更改与 centeredscaling 属性相关的对象的颜色、光标、描边宽度等属性。
选项键centeredscaling - 该属性接受一个布尔值并允许我们控制对象是否应使用其中心作为变换原点。
示例 1传递 centeredscaling 作为 key 并为其分配一个“true”值
让我们看一个代码示例,了解启用 centeredscaling 属性时三角形对象的行为。当我们放大对象时,变换的原点是三角形的中心。
<!doctype html><html><head> <!-- adding the fabric js library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script></head><body> <h2>passing centeredscaling as key and assigning it a "true" value</h2> <p>try scaling the triangle to see that it is using its center as the center of transformation.</p> <canvas id="canvas"></canvas> <script> // initiate a canvas instance var canvas = new fabric.canvas("canvas"); canvas.setwidth(document.body.scrollwidth); canvas.setheight(250); // initiate a triangle object var triangle = new fabric.triangle({ left: 105, top: 60, width: 100, height: 70, fill: "#5f9ea0", centeredscaling: true, }); // add it to the canvas canvas.add(triangle); </script></body></html>
示例 2禁用 centeredscaling 属性
我们可以通过为其指定 false 值来禁用 centeredscaling 属性。这将不再使用三角形的中心作为变换的中心。这是一个代码示例来演示
<!doctype html><html><head> <!-- adding the fabric js library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script></head><body> <h2>disabling the centeredscaling property</h2> <p>try scaling the triangle to see that it is using one of its corners as the center of transformation.</p> <canvas id="canvas"></canvas> <script> // initiate a canvas instance var canvas = new fabric.canvas("canvas"); canvas.setwidth(document.body.scrollwidth); canvas.setheight(250); // initiate a triangle object var triangle = new fabric.triangle({ left: 105, top: 60, width: 100, height: 70, fill: "#5f9ea0", centeredscaling: false, }); // add it to the canvas canvas.add(triangle); </script></body></html>
以上就是如何使用 fabricjs 禁用三角形的中心缩放?的详细内容。
