在本文中,我们将看到如何使用FabricJS设置画布Textbox的笔划破折号模式。画布文本框表示该文本框是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔划颜色,高度,宽度,填充颜色或笔划宽度时,可以自定义文本框。
为了使之成为可能,我们将使用一个名为FabricJS的JavaScript库。导入库后,我们将在包含文本框的body标签中创建一个canvas块。此后,我们将初始化FabricJS提供的canvas和textbox的实例,并分别使用stroke和strokeDashArray属性设置文本框的笔触颜色和笔划破折号图案,并在画布上渲染该文本框,如以下示例所示。
用法:
fabric.Textbox('text', { strokeDashArray:array });
参数:该函数接受上面提到和下面描述的一个参数。
- strokeDashArray:它指定笔划破折号图案。
例:本示例使用FabricJS设置画布文本框的笔划破折号图案。
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Textbox strokeDashArray Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox strokeDashArray Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width:500,
strokeDashArray:[5],
stroke:'green'
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Text strokeDashArray属性用法及代码示例
- Fabric.js Circle strokeDashArray属性用法及代码示例
- Fabric.js Rect strokeDashArray属性用法及代码示例
- Fabric.js Triangle strokeDashArray属性用法及代码示例
- Fabric.js Ellipse strokeDashArray属性用法及代码示例
- Fabric.js Polygon strokeDashArray属性用法及代码示例
- Fabric.js line strokeDashArray属性用法及代码示例
- Fabric.js Textbox borderOpacityWhenMoving属性用法及代码示例
- Fabric.js Textbox borderScaleFactor属性用法及代码示例
- Fabric.js Textbox centeredRotation属性用法及代码示例
- Fabric.js Textbox centeredScaling属性用法及代码示例
- Fabric.js Textbox charSpacing属性用法及代码示例
- Fabric.js Textbox cornerColor属性用法及代码示例
- Fabric.js Textbox cornerSize属性用法及代码示例
- Fabric.js Textbox fontFamily属性用法及代码示例
- Fabric.js Textbox fontSize属性用法及代码示例
- Fabric.js Textbox fontStyle属性用法及代码示例
- Fabric.js Textbox fontWeight属性用法及代码示例
- Fabric.js Textbox hasBorders属性用法及代码示例
- Fabric.js Textbox hasControls属性用法及代码示例
- Fabric.js Textbox hoverCursor属性用法及代码示例
- Fabric.js Textbox height属性用法及代码示例
- Fabric.js Textbox includeDefaultValues属性用法及代码示例
- Fabric.js Textbox inverted属性用法及代码示例
注:本文由纯净天空筛选整理自blalverma92大神的英文原创作品 Fabric.js Textbox strokeDashArray Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。