如何使用 FabricJS 设置文本框控制角的样式?
在本教程中,我们将学习如何使用 FabricJS 设置文本框控制角的样式。我们可以自定义、拉伸或移动文本框中编写的文本。为了创建文本框,我们必须创建一个 `fabric.Textbox` 类的实例并将其添加到画布中。对象的控制角允许我们缩放、拉伸或更改其位置。我们可以通过多种方式自定义控制角,例如为其添加特定颜色、更改其大小等。我们可以使用 `cornerStyle` 属性更改样式。
语法
new fabric.Textbox(text: String, { cornerStyle: String }: Object)
参数
text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、描边宽度等等,其中 `cornerStyle` 就是一个属性。
选项键
cornerStyle − 此属性接受一个字符串,允许我们指定所需的控制角样式。
示例 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 style of controlling corners</h2> <p>You can select the textbox to see the default style of 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("People are taking the comedians seriously and the politicians as a joke.", { backgroundColor: "rgba(204,255,0,0.2)", width: 400, top: 70, left: 110, cornerColor: "#87a96b", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将cornerStyle作为键传递,值为“circle”
我们可以通过将值作为“circle”或“rect”传递来指定活动选中对象的控制角的样式或外观。“circle”值将使控制角呈圆形,如下例所示:
<!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 cornerStyle as key with the value "circle"</h2> <p>You can select the textbox to see that the corner style has changed to circle</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("People are taking the comedians seriously and the politicians as a joke.", { backgroundColor: "rgba(204,255,0,0.2)", width: 200, top: 70, left: 110, cornerColor: "#87a96b", cornerStyle: "circle", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告