如何使用 FabricJS 在缩放文本框时锁定翻转?
fabricjsjavascripthtml5 canvas
在本教程中,我们将学习如何使用 FabricJS 在缩放文本框时锁定翻转。就像我们可以在画布中指定文本框对象的位置、颜色、不透明度和尺寸一样,我们也可以指定是否要在缩放期间停止翻转对象。这可以通过使用 lockScalingFlip 属性来实现。
语法
new fabric.Textbox(text: String, { lockScalingFlip : Boolean }: Object)
参数
text − 此参数接受 String,即我们想要在文本框内显示的文本字符串。
options(可选) − 此参数是一个 Object,可为我们的文本框提供额外的自定义。使用此参数,可以更改与 lockScalingFlip 属性相关的对象(颜色、光标、笔触宽度和许多其他属性)的属性。
选项键
lockScalingFlip − 此属性接受 Boolean 值。如果我们为其分配一个"真"值,则对象将不允许在缩放期间翻转。
示例 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> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化一个 textbox 文本框对象 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", }); // 将其添加到画布 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> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化一个 textbox 文本框对象 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, }); // 将其添加到画布 canvas.add(textbox); </script> </body> </html>