在本文中,我们将看到如何使用FabricJS设置画布Itext的填充颜色。 Fabric.js是一个JavaScript库,用于处理画布。 canvas Itext是用于创建Itext实例的fabric.js类之一。 canvas Itext表示Itext是可移动的,并且可以根据需要进行拉伸。在本文中,我们将在canvas Itext中使用fill属性。
首先导入fabric.js库。导入库后,在body标签中创建一个画布块,其中将包含Itext。之后,初始化由Fabric.JS提供的Canvas和Itext类的实例,并使用fill属性。
用法:
fabric.Itext (Itext , { fill:string });
参数:此函数接受上述和以下描述的单个参数:
- fill:此参数采用字符串值。
例:此示例使用FabricJS设置画布Itext的fill属性,如下例所示:
HTML
<!DOCTYPE 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 fill 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:"red",
});
console.log(geek.willDrawShadow());
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Itext lockMovementY属性用法及代码示例
- Fabric.js Itext lockRotation属性用法及代码示例
- Fabric.js Itext fontStyle属性用法及代码示例
- Fabric.js Itext hasBorders属性用法及代码示例
- Fabric.js Itext lockMovementX属性用法及代码示例
- Fabric.js Itext cornerStyle属性用法及代码示例
- Fabric.js Itext borderColor属性用法及代码示例
- Fabric.js Itext angle属性用法及代码示例
- Fabric.js Itext centeredRotation属性用法及代码示例
- Fabric.js Itext cornerSize属性用法及代码示例
- Fabric.js Itext hoverCursor属性用法及代码示例
- Fabric.js Itext underline属性用法及代码示例
- Fabric.js Itext transparentCorners属性用法及代码示例
- Fabric.js Itext strokeDashArray属性用法及代码示例
- Fabric.js Itext lockScalingY属性用法及代码示例
- Fabric.js Itext lockScalingX属性用法及代码示例
- Fabric.js Itext lockScalingFlip属性用法及代码示例
- Fabric.js Itext fontWeight属性用法及代码示例
- Fabric.js Itext hasControls属性用法及代码示例
- Fabric.js Itext linethrough属性用法及代码示例
- Fabric.js Itext borderDashArray属性用法及代码示例
- Fabric.js Itext borderScaleFactor属性用法及代码示例
- Fabric.js Itext charSpacing属性用法及代码示例
- Fabric.js Itext cornerDashArray属性用法及代码示例
注:本文由纯净天空筛选整理自dheerchanana08大神的英文原创作品 Fabric.js Itext fill Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。