在本文中,我们将看到如何使用FabricJS向文本画布添加笔触偏移。画布意味着书写的文本是可移动的,可旋转的,可调整大小的,并且可以拉伸。但是在本文中,我们将添加笔触偏移量。此外,文本本身不能像文本框一样进行编辑。
为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含我们的文本。此后,我们将初始化FabricJS提供的Canvas和Text实例,并使用stroke属性创建一个笔触,并进一步使用strokeDashOffset属性添加笔触偏移并在文本上渲染Canvas,如以下示例所示。
用法:
fabric.text( text:string, strokeDashOffset:number, stroke:string );
参数:此函数接受上述和以下描述的三个参数:
- text:此参数指定文本。
- strokeDashOffset:此参数定义笔划的偏移量。
- stroke:此参数定义笔触颜色。
例:本示例使用FabricJS将笔画偏移添加到文本画布,如下所示。
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Text strokeDashOffset Property
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">GeeksforGeeks</h1>
<b>
Add stroke offset to canvas-like
text with JavaScript
</b>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Create a new instace of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var text = new fabric.Text('GeeksforGeeks', {
strokeDashOffset:10,
stroke:'red'
});
// Render the text on Canvas
canvas.add(text);
</script>
</center>
</body>
</html>
输出:
相关用法
- Fabric.js Triangle strokeDashOffset属性用法及代码示例
- CSS text-align用法及代码示例
- CSS text-decoration用法及代码示例
- CSS text-decoration-color用法及代码示例
- CSS text-decoration-line用法及代码示例
- CSS text-justify用法及代码示例
- CSS text-align-last用法及代码示例
- CSS text-transform属性用法及代码示例
- CSS text-shadow用法及代码示例
- CSS text-indent用法及代码示例
- CSS text-decoration-style用法及代码示例
- CSS text-overflow用法及代码示例
- HTML Option text用法及代码示例
- HTML Input Text value用法及代码示例
- HTML Input Text type用法及代码示例
- HTML Input Text size用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 Fabric.js | Text strokeDashOffset Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。