Fabric.js 是一个用于处理画布的 JavaScript 库。画布 Itext 是用于创建 Itext 实例的 Fabric.js 类之一。画布 Itext 表示 Itext 是可移动的,可以根据需要进行拉伸。在本文中,我们将使用paintFirst 属性。
首先导入 Fabric.js 库。导入库后,在 body 标签中创建一个包含 Itext 的画布块。之后,初始化 Fabric.js 提供的 Canvas 和 Itext 类的实例,并使用paintFirst 属性。
用法:
fabric.Itext(Itext, { paintFirst:string });
参数:该函数采用上述和以下描述的单个参数:
- paintFirst:它指定paintFirst 属性的字符串值。此参数的可接受值是填充和描边。
例:本示例使用 Fabric.js 设置画布 Itext 的paintFirst 属性。
HTML
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align:center;
width:400px;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Itext paintFirst Property
</b>
</div>
<div style="text-align:center;">
<canvas id="canvas"
width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
var canvas = new fabric.Canvas("canvas");
var geek = new fabric.IText('GeeksforGeeks', {
fill:'green',
stroke:'blue',
paintFirst:'fill'
});
console.log(geek.willDrawShadow())
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Polygon paintFirst属性用法及代码示例
- Fabric.js Textbox paintFirst属性用法及代码示例
- Fabric.js Polyline paintFirst属性用法及代码示例
- Fabric.js Ellipse paintFirst属性用法及代码示例
- Fabric.js Circle paintFirst属性用法及代码示例
- Fabric.js Group paintFirst属性用法及代码示例
- Fabric.js Text paintFirst属性用法及代码示例
- Fabric.js Itext transparentCorners属性用法及代码示例
- Fabric.js Itext borderOpacityWhenMoving属性用法及代码示例
- Fabric.js Itext borderDashArray属性用法及代码示例
- Fabric.js Itext cornerSize属性用法及代码示例
- Fabric.js Itext centeredRotation属性用法及代码示例
- Fabric.js Itext angle属性用法及代码示例
- Fabric.js Itext borderColor属性用法及代码示例
- Fabric.js Itext cornerStyle属性用法及代码示例
- Fabric.js Itext lockMovementX属性用法及代码示例
- Fabric.js Itext hoverCursor属性用法及代码示例
- Fabric.js Itext lockRotation属性用法及代码示例
- Fabric.js Itext lockMovementY属性用法及代码示例
- Fabric.js Itext fontStyle属性用法及代码示例
- Fabric.js Itext hasBorders属性用法及代码示例
- Fabric.js Itext opacity属性用法及代码示例
- Fabric.js Itext objectCaching属性用法及代码示例
注:本文由纯净天空筛选整理自dheerchanana08大神的英文原创作品 Fabric.js Itext paintFirst Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。