如何使用FabricJS锁定圆形的水平缩放?
在本教程中,我们将学习如何使用FabricJS锁定圆形的水平缩放。就像我们可以在画布上指定圆形对象的位移、颜色、不透明度和尺寸一样,我们也可以指定是否要停止对象的水平缩放。这可以通过使用`lockScalingX`属性来实现。
语法
new fabric.Circle({ 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>Locking the horizontal scaling of a circle using FabricJS</h2> <p>You can select the circle and scale it freely in any direction. This is the default behavior. Here we have not applied the <b>lockScalingX</b> property, but by default, it is set to False. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle({ left: 115, top: 50, fill: "white", radius: 50, stroke: "black", strokeWidth: 5 }); // Adding it to the canvas canvas.add(circle); 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>Locking the horizontal scaling of circle using FabricJS</h2> <p>Here, you will no longer be able to scale the circle horizontally, as we have set <b>lockScalingX</b> to True. You can however scale the circle in vertical direction. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle({ left: 115, top: 50, fill: "white", radius: 50, stroke: "black", strokeWidth: 5, lockScalingX: true }); // Adding it to the canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
广告