Fabric.js 是一个用于处理画布的 JavaScript 库。画布 Itext 是用于创建 Itext 实例的 fabric.js 类之一。画布 Itext 表示 Itext 是可移动的,可以根据需要进行拉伸。在本文中,我们将使用 touchCornerSize 属性来设置画布 Itext 中的角大小。
首先导入fabric.js 库。导入库后,在 body 标签中创建一个包含 Itext 的画布块。之后,初始化 Fabric.JS 提供的 canvas 和 Itext 类的实例,并使用 touchCornerSize 属性设置角大小。
用法:
fabric.Itext (Itext , { touchCornerSize:number });
参数:该函数采用上述和以下描述的单个参数。
- touchCornerSize :此参数采用数字值。检测到触摸交互时对象控制角的大小。
示例:本示例使用 FabricJS 设置画布 Itext 的 touchCornerSize 属性,如下例所示。
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 touchCornerSize 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 itext = new fabric.IText('GeeksforGeeks', {
touchCornerSize:10
});
canvas.add(itext);
canvas.centerObject(itext);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Polygon touchCornerSize属性用法及代码示例
- Fabric.js Polyline touchCornerSize属性用法及代码示例
- Fabric.js Circle touchCornerSize属性用法及代码示例
- Fabric.js Path touchCornerSize属性用法及代码示例
- Fabric.js Image touchCornerSize属性用法及代码示例
- Fabric.js Group touchCornerSize属性用法及代码示例
- Fabric.js Ellipse touchCornerSize属性用法及代码示例
- Fabric.js Text touchCornerSize属性用法及代码示例
- 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 touchCornerSize Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。