如何使用 FabricJS 在缩放文本框时锁定翻转?


在本教程中,我们将学习如何使用 FabricJS 在缩放文本框时锁定翻转。就像我们可以在画布上指定文本框对象的

语法

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

参数

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

  • options(可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象的

选项键

  • lockScalingFlip − 此属性接受一个布尔值。如果我们为其分配“true”值,则在缩放期间将不允许对象翻转。

示例 1

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

让我们看一个代码示例来了解当未使用 lockScalingFlip 属性时文本框对象的默认行为。

<!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>Select a corner and drag diagonally to scale it and then flip it following the same path </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 wisest mind has something yet to learn.", { width: 400, left: 110, top: 70, fill: "orange", strokeWidth: 2, stroke: "green", textAlign: "center", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>

示例 2

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

在此示例中,我们将看到如何通过使用 lockScalingFlip 属性来停止文本框对象在缩放时的翻转能力。如我们所见,

<!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 lockScalingFlip as key with "true" value</h2> <p>You will no longer be able to flip the textbox while scaling it</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 wisest mind has something yet to learn.", { width: 400, left: 110, top: 70, fill: "orange", strokeWidth: 2, stroke: "green", textAlign: "center", lockScalingFlip: true, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>

更新于: 2022年9月12日

166 次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告