如何使用 FabricJS 设置文本控制角的样式?
在本教程中,我们将学习如何使用 FabricJS 设置文本控制角的样式。对象的控制角允许我们缩放、拉伸或更改其位置。我们可以通过多种方式自定义控制角,例如为其添加特定的颜色、更改其大小等。我们可以使用 cornerStyle 属性更改样式。
语法
new fabric.Text(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 text object to see the deafult 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 text object var text = new fabric.Text("Add Sample Text Here", { top: 70, left: 60, cornerColor: "#87a96b", }); // Add it to the canvas canvas.add(text); </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 text object 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 text object var text = new fabric.Text("Add Sample Text Here", { top: 70, left: 60, cornerColor: "#87a96b", cornerStyle: "circle", }); // Add it to the canvas canvas.add(text); </script> </body> </html>
广告