如何使用 FabricJS 设置文本框控制角的大小?
在本教程中,我们将学习如何使用 FabricJS 设置文本框控制角的大小。对象的控制角允许我们缩放、拉伸或更改其位置。我们可以通过多种方式自定义控制角,例如为其添加特定颜色、更改其大小等。我们可以使用cornerSize属性更改大小。
语法
new fabric.Textbox(text: String, { cornerSize: Number }: Object)
参数
text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、笔触宽度等,其中cornerSize也是一个属性。
选项键
cornerSize − 此属性接受一个数字,它允许我们操作所选对象控制角的大小。其默认值为 13。
示例 1
控制角的默认大小
让我们看一个代码示例,该示例描述了文本框对象在处于活动选择状态时控制角的默认大小。
<!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 size of the controlling corners</h2> <p>You can select the textbox to see the default size of the controlling corners</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 best way to teach your kids about taxes is by eating 30 percent of their ice cream.", { backgroundColor: "rgba(204,255,0,0.2)", width: 400, top: 20, left: 110, cornerColor: "#87a96b", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将cornerSize作为键传递,并使用自定义值
在此示例中,我们将cornerSize属性作为键传递,其值为 17。我们可以看到当文本框对象被选中时,它如何改变控制角的大小。
<!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 cornerSize as key with a custom value</h2> <p>You can select the textbox to see the size of the controlling corners</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 best way to teach your kids about taxes is by eating 30 percent of their ice cream.", { backgroundColor: "rgba(204,255,0,0.2)", width: 400, top: 70, left: 110, cornerColor: "#87a96b", cornerSize: 17, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告