在本文中,我们将看到如何使用Fabric.js更改文本画布的touchCornerSize。画布意味着写入的文本是可移动的,可旋转的,可调整大小的,并且可以拉伸。此外,文本本身不能像文本框一样进行编辑。
为了使其成为可能,我们将使用一个名为Fabric.js的JavaScript库。使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含我们的文本。此后,我们将初始化FabricJS提供的Canvas和Text实例,并使用touchCornerSize属性设置画布文本的touchCornerSize颜色。
用法:
fabric.Text(text, touchCornerSize:Number );
参数:此属性接受如上所述和以下所述的一个参数:
- touchCornerSize:检测到触摸交互时对象控制角的大小。
下面的示例说明了Fabric.js中touchCornerSize属性的使用:
例:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<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 | Text touchCornerSize Property
</b>
</div>
<div style="text-align:center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Create a new instace of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var geek = new fabric.Text('GeeksforGeeks', {
touchCornerSize:2
});
// Render the text on Canvas
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
输出:
参考: http://fabricjs.com/docs/fabric.Text.html#touchCornerSize
相关用法
- Fabric.js Polygon touchCornerSize属性用法及代码示例
- Fabric.js Path touchCornerSize属性用法及代码示例
- Fabric.js Circle touchCornerSize属性用法及代码示例
- Fabric.js Image touchCornerSize属性用法及代码示例
- Fabric.js Group touchCornerSize属性用法及代码示例
- Fabric.js Ellipse touchCornerSize属性用法及代码示例
- Fabric.js Polyline touchCornerSize属性用法及代码示例
- CSS text-align用法及代码示例
- CSS text-decoration用法及代码示例
- CSS text-decoration-color用法及代码示例
- CSS text-decoration-line用法及代码示例
- CSS text-justify用法及代码示例
- CSS text-align-last用法及代码示例
- CSS text-transform属性用法及代码示例
- CSS text-shadow用法及代码示例
- CSS text-indent用法及代码示例
- CSS text-decoration-style用法及代码示例
- CSS text-overflow用法及代码示例
- HTML Option text用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 Fabric.js Text touchCornerSize Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。