在本文中,我们将看到如何使用FabricJS中的linethrough属性在画布的Textbox中添加一行。画布意味着编写的文本框是可移动的,并且可以根据要求进行拉伸,调整大小和旋转。此外,文本本身不能像文本框一样进行编辑。
方法:
- 为了使之成为可能,我们将使用一个名为FabricJS的JavaScript库。
- 使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含我们的Textbox。
- 之后,我们将初始化FabricJS提供的Canvas和Textbox的实例,并使用linethrough属性添加一个linethrough并在Textbox上呈现Canvas,如下例所示。
用法:
fabric.Textbox('text', { linethrough:boolean });
参数:该函数接受上面提到并在下面描述的一个参数:
- linethrough:它是一个布尔值,它指定是启用还是禁用换行文本修饰,默认情况下处于禁用状态。
例:我们将使用FabricJS向文本框画布中的文本添加换行符,如下所示
HTML
<!DOCTYPE html>
<html>
<head>
<!-- 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 linethrough 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,
linethrough:true
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Itext linethrough属性用法及代码示例
- 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属性用法及代码示例
- Fabric.js Textbox isEditing属性用法及代码示例
- Fabric.js Textbox editingBorderColor属性用法及代码示例
- Fabric.js Textbox fill属性用法及代码示例
- Fabric.js Textbox flipX属性用法及代码示例
- Fabric.js Textbox flipY属性用法及代码示例
注:本文由纯净天空筛选整理自blalverma92大神的英文原创作品 Fabric.js Textbox linethrough Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。