如何使用FabricJS锁定椭圆的水平缩放?
在本教程中,我们将学习如何使用FabricJS锁定椭圆的水平缩放。正如我们可以在画布中指定椭圆对象的位 置、颜色、不透明度和尺寸一样,我们还可以指定是否要阻止对象的水平缩放。这可以通过使用`lockScalingX`属性来完成。
语法
new fabric.Ellipse({ lockScalingX : Boolean }: Object)
参数
options (可选) − 此参数是一个对象,它为我们的椭圆提供了额外的自定义功能。使用此参数可以更改与对象的许多属性相关的颜色、光标、笔划宽度等,其中`lockScalingX`就是一个属性。
选项键
lockScalingX − 此属性接受一个布尔值。如果我们将其赋值为“true”,则对象的水平缩放将被锁定。
示例 1
画布中椭圆对象的默认行为
让我们来看一个例子,了解在不使用`lockScalingX`属性时椭圆对象的默认行为。可以水平和垂直两个方向缩放对象。
<!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>How to lock the horizontal scaling of Ellipse using FabricJS?</h2> <p>Here you can select the object and scale it both horizontally and vertically because we have not used the <b>lockScalingX</b> property. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 115, top: 50, fill: "white", rx: 80, ry: 50, stroke: "black", strokeWidth: 5, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
示例 2
将`lockScalingX`作为键,值设置为'true'
在这个例子中,我们将看到如何使用`lockScalingX`属性来阻止椭圆对象水平缩放。虽然我们可以垂直缩放椭圆对象,但是不允许水平缩放。
<!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>How to lock the horizontal scaling of Ellipse using FabricJS?</h2> <p>Here you can select the object and scale it vertically, but you can't scale it horizontally because we have set <b>lockScalingX</b> to True. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 115, top: 50, fill: "white", rx: 80, ry: 50, stroke: "black", strokeWidth: 5, lockScalingX: true, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
广告