如何使用 FabricJS 锁定文本框的垂直缩放?


在本教程中,我们将学习如何使用 FabricJS 锁定文本框的垂直缩放。就像我们可以在画布上指定文本框对象的定位、颜色、不透明度和尺寸一样,我们还可以指定是否希望停止对象的垂直缩放。这可以通过使用lockScalingY属性来实现。

语法

new fabric.Textbox(text: String, { lockScalingY : Boolean }: Object)

参数

  • text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。

  • options(可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象的许多属性相关的属性,其中lockScalingY也是一个属性,例如颜色、光标、笔触宽度等。

选项键

  • lockScalingY − 此属性接受一个布尔值。如果我们将其分配一个“true”值,则对象的垂直缩放将被锁定。

示例 1

画布中文本框对象的默认行为

让我们看一个代码示例,以了解在不使用lockScalingY属性时文本框对象的默认行为。可以在水平和垂直方向上缩放对象。

<!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>Default behaviour of a Textbox object in the canvas</h2> <p>You can scale the textbox in horizontal and vertical directions to verify that scaling in both directions is possible</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 textbox object var textbox = new fabric.Textbox("The fool wonders, the wise man asks.", { width: 400, left: 110, top: 70, fill: "violet", strokeWidth: 2, stroke: "pink", textAlign: "center", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>

示例 2

lockScalingY作为键传递,值为“true”

在本例中,我们将看到如何使用lockScalingY属性停止文本框对象垂直缩放的能力。如我们所见,虽然我们可以水平缩放文本框对象,但我们不允许垂直执行相同的操作。

<!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 lockScalingY as key with "true" value</h2> <p>You can see a not-allowed cursor if you try to scale the textbox in the y-direction</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 textbox object var textbox = new fabric.Textbox("The fool wonders, the wise man asks.", { width: 400, left: 110, top: 70, fill: "violet", strokeWidth: 2, stroke: "pink", textAlign: "center", lockScalingY: true, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>

更新时间: 2022年8月2日

163 次浏览

启动你的 职业生涯

通过完成课程获得认证

开始学习
广告