如何使用 FabricJS 隐藏文本框?
在本教程中,我们将学习如何使用 FabricJS 隐藏文本框。文本框是 FabricJS 提供的各种形状之一。我们可以自定义、拉伸或移动文本框中的文字。为了创建文本框,我们必须创建一个 `fabric.Textbox` 类的实例并将其添加到画布上。我们的文本框对象可以通过多种方式进行自定义,例如更改其尺寸、添加背景颜色或使其可见或不可见。我们可以使用 `visible` 属性来实现这一点。
语法
new fabric.Textbox(text: String, { visible: Boolean }: Object)
参数
text − 此参数接受一个字符串,即我们想要在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,其中 `visible` 属性也是其中之一,例如颜色、光标、描边宽度等等。
选项键
visible: 此属性接受一个布尔值,允许我们将对象渲染到画布上。其默认值为 true。
示例 1
将visible 属性作为键,值为 "true"
让我们来看一个代码示例,了解当我们将 `visible` 属性设置为 true 值时会发生什么。通过将其赋值为 "true",我们确保我们的文本框对象被渲染到画布上。这也是 FabricJS 的默认行为。
<!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 visible property as key with a "true" value</h2> <p>You can see the textbox object has been rendered onto the canvas</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("A smooth sea never made a skillful sailor.", { backgroundColor: "#fffff0", width: 400, left: 110, top: 70, fill: "violet", strokeWidth: 2, stroke: "blue", textAlign: "center", visible: true, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将visible 属性作为键,值为 "false"
在这个例子中,我们将 `visible` 属性作为键,值为 false。赋值为 false 值将确保我们的文本框对象不会被渲染到画布上。它并没有使对象“不可见”,而是完全将其移除。它可以用于从画布中移除对象,而无需移除其代码。
<!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 visible property as key with a "false" value</h2> <p>You can see the textbox object has not been rendered onto the canvas</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("A smooth sea never made a skillful sailor.", { backgroundColor: "#fffff0", width: 400, left: 110, top: 70, fill: "violet", strokeWidth: 2, stroke: "blue", textAlign: "center", visible: false, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告