在本教程中,我们将学习如何使用 FabricJS 设置 Line 控制角的大小。对象的控制角允许我们缩放、拉伸或更改其位置。我们可以通过多种方式自定义控制角,例如为其添加特定颜色、更改其大小等。我们可以使用 cornerSize 属性来更改大小。 p>
new fabric.Line( points: Array, { cornerSize: Number }: Object)
points - 此参数接受一个点数组,该数组确定 (x1 , y1) 和 (x2, y2) 值,分别是线的起点和终点的 x 轴坐标和 y 轴坐标。
options(可选)- 此参数是一个对象,它为我们的对象提供额外的自定义。使用此参数,可以更改与 cornerSize 属性相关的对象的原点、描边宽度和许多其他属性。
cornerSize - 此属性接受一个数字,允许我们操纵选定对象的控制角的大小。它的默认值为 13。
让我们看一个描述主动选择线对象时控制角的默认大小。
<!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 line object to see the default size 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 Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, }); // Add it to the canvas canvas.add(line); </script> </body> </html>
在此示例中,我们将 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 line object to see the size 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 Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, cornerColor: "#87a96b", cornerSize: 17, }); // Add it to the canvas canvas.add(line); </script> </body> </html>
以上是FabricJS – 如何设置线的控制角的大小?的详细内容。更多信息请关注PHP中文网其他相关文章!