Fabric.js是一个JavaScript HTML5画布库,用于处理画布。 canvas Itext是用于创建Itext实例的fabric.js类之一。 canvas Itext表示Itext是可移动的,并且可以根据需要进行拉伸。在本文中,我们将使用angle属性,该属性用于旋转canvas Itext中的文本。
方法:
- 首先导入fabric.js库。
- 导入库后,在body标签中创建一个canvas块,其中将包含Itext。
- 之后,初始化由Fabric.JS提供的Canvas和Itext类的实例,并使用angle属性旋转文本。
用法:
fabric.Itext(Itext, { angle:number });
参数:此函数采用上述和以下描述的单个参数:
- angle:此参数采用数字值。
例:此示例使用FabricJS设置画布Itext的angle属性,如下例所示:
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 angle 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', {
angle:20
});
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 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 fill属性用法及代码示例
- Fabric.js Itext borderScaleFactor属性用法及代码示例
- Fabric.js Itext charSpacing属性用法及代码示例
- Fabric.js Itext cornerDashArray属性用法及代码示例
注:本文由纯净天空筛选整理自dheerchanana08大神的英文原创作品 Fabric.js Itext angle Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。