在本文中,我们将看到如何使用FabricJS设置画布Ellipse的描边Line Join。帆布意味着Ellipse是可移动的,可以根据需要进行拉伸。此外,在初始笔划颜色,填充颜色,笔划宽度或大小方面,可以自定义椭圆。
方法:为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。使用CDN导入库之后,我们将在body标签中创建一个canvas块,其中将包含Ellipse。之后,我们将初始化FabricJS提供的Canvas和Ellipse的实例,并使用strokeUniform属性设置canvas Ellipse的strokeLineJoin值,并在画布上呈现Ellipse,如下面的示例所示。
用法:
fabric.Ellipse({ rx:number, ry:number, fill:string, strokeLineJoin:string });
参数:此函数接受上述和以下描述的三个参数:
- rx:它指定水平半径。
- ry:它指定垂直半径。
- fill:它指定填充椭圆的颜色。
- strokeLineJoin:它指定strokeLineJoin的值。
例:本示例使用FabricJS设置strokeLineJoin属性的值。
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js Ellipse strokeLineJoin Property
</title>
<!-- 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 strokeLineJoin 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',
strokeLineJoin:'miter'
});
// Render the ellipse in canvas
canvas.add(ellipse);
canvas.centerObject(ellipse);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Polygon strokeLineJoin属性用法及代码示例
- Fabric.js Triangle strokeLineJoin属性用法及代码示例
- Fabric.js Textbox strokeLineJoin属性用法及代码示例
- Fabric.js Polyline strokeLineJoin属性用法及代码示例
- Fabric.js Path strokeLineJoin用法及代码示例
- Fabric.js Image strokeLineJoin属性用法及代码示例
- Fabric.js Group strokeLineJoin属性用法及代码示例
- 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属性用法及代码示例
注:本文由纯净天空筛选整理自blalverma92大神的英文原创作品 Fabric.js Ellipse strokeLineJoin Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。