如何使用FabricJS设置文本框的编辑模式?
在本教程中,我们将学习如何使用FabricJS启用文本框的编辑模式。就像我们可以在画布上指定文本框对象的位 置、颜色、不透明度和尺寸一样,我们也可以编辑文本框中的文本。这可以通过使用`editable`属性来启用或禁用。
语法
new fabric.Textbox(text: String, { editable : Boolean }: Object)
参数
text − 此参数接受一个字符串,即我们想要在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,其中`editable`就是一个属性,例如颜色、光标、描边宽度等等。
选项键
editable: 此属性接受一个布尔值。如果我们将其赋值为“true”,则允许我们编辑文本框内的文本。其默认值为true。
示例1
画布中文本框对象的默认行为
让我们看一个代码示例,了解当不使用`editable`属性时文本框对象的默认行为。默认情况下,允许我们编辑文本框内的文本。
<!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 double click on the Textbox and edit the text</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("It doesn't matter how slow you go, as long as you don't stop.", { width: 400, left: 110, top: 70, fill: "orange", stroke: "green", textAlign: "center", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例2
将editable作为键,值设置为“false”
在这个例子中,我们将看到如何使用`editable`属性使文本框内的文本不可编辑。正如我们所看到的,虽然我们可以选择文本框对象,但我们无法再编辑其中的文本。
<!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 editable as key with "false" value</h2> <p>You can double-click on the textbox to see that the text is not editable</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("It doesn't matter how slow you go, as long as you don't stop.", { width: 400, left: 110, top: 70, fill: "orange", stroke: "green", textAlign: "center", editable: false, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告