在本文中,我们将看到如何使用FabricJS(用于填充对象)设置Ellipse画布的touchCornerSize。画布Ellipse表示Ellipse是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔触颜色,高度,宽度,填充颜色或笔触宽度时,可以自定义椭圆。
为了使之成为可能,我们将使用一个名为FabricJS的JavaScript库。导入库后,我们将在body标签中创建一个包含Ellipse的canvas块。此后,我们将初始化FabricJS提供的Canvas和Ellipse实例,并使用touchCornerSize属性设置Canvas Ellipse的touchCornerSize颜色,并按照以下示例中的方式在Canvas上呈现Ellipse。
用法:
fabric.Ellipse({ rx:number, ry:number, fill:string, touchCornerSize:number });
参数:此函数接受上述和以下描述的三个参数:
- rx:它指定水平半径。
- ry:它指定垂直半径。
- fill:它指定填充椭圆的颜色。
- 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>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js Ellipse touchCornerSize Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx:150,
ry:75,
fill:'',
stroke:'green',
touchCornerSize:8
});
// Render the ellipse in canvas
canvas.add(ellipse);
canvas.centerObject(ellipse);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Polygon touchCornerSize属性用法及代码示例
- Fabric.js Path touchCornerSize属性用法及代码示例
- Fabric.js Circle touchCornerSize属性用法及代码示例
- Fabric.js Image touchCornerSize属性用法及代码示例
- Fabric.js Group touchCornerSize属性用法及代码示例
- Fabric.js Polyline touchCornerSize属性用法及代码示例
- Fabric.js Ellipse borderOpacityWhenMoving属性用法及代码示例
- Fabric.js Ellipse fill属性用法及代码示例
- Fabric.js Ellipse hasControls属性用法及代码示例
- Fabric.js Ellipse centeredScaling属性用法及代码示例
- Fabric.js Ellipse cornerStrokeColor属性用法及代码示例
- Fabric.js Ellipse cornerStyle属性用法及代码示例
- Fabric.js Ellipse borderDashArray属性用法及代码示例
- Fabric.js Ellipse cornerDashArray属性用法及代码示例
- Fabric.js Ellipse cornerColor属性用法及代码示例
- Fabric.js Ellipse borderColor属性用法及代码示例
- Fabric.js Ellipse centeredRotation属性用法及代码示例
- Fabric.js Ellipse lockScalingFlip属性用法及代码示例
- Fabric.js Ellipse backgroundColor属性用法及代码示例
- Fabric.js Ellipse hasRotatingPoint属性用法及代码示例
- Fabric.js Ellipse left属性用法及代码示例
- Fabric.js Ellipse lockMovementX属性用法及代码示例
- Fabric.js Ellipse lockMovementY属性用法及代码示例
- Fabric.js Ellipse lockRotation属性用法及代码示例
注:本文由纯净天空筛选整理自blalverma92大神的英文原创作品 Fabric.js Ellipse touchCornerSize Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。