在本文中,我们将查看画布中的拐角是否可见FabricJS。画布线表示该线是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔划颜色,高度,宽度,填充颜色或笔划宽度时,可以自定义该行。
为了使之成为可能,我们将使用一个名为FabricJS的JavaScript库。导入库后,我们将在body标签中创建一个画布块,其中将包含该行。之后,我们将初始化FabricJS提供的canvas和line的实例。如果角落是可见的,它们由的 hasControls属性,并在画布上渲染该行,如下所示。
用法:
fabric.line({ hasControls:boolean });
参数:该属性接受上面提到和下面描述的单个参数。
- hasControls :它指定拐角是否可见。它包含一个布尔值。
范例1:
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1>fabric.js | line hasControls property</h1>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
var canvas = new fabric.Canvas("canvas");
var line = new fabric.Line([150, 10, 220, 150], {
stroke:'green',
hasControls:true
});
canvas.add(line);
</script>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1>fabric.js | line hasControls property</h1>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
var canvas = new fabric.Canvas("canvas");
var line = new fabric.Line([150, 10, 220, 150], {
stroke:'green',
hasControls:false
});
canvas.add(line);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Circle hasControls属性用法及代码示例
- Fabric.js Ellipse hasControls属性用法及代码示例
- Fabric.js Rect hasControls属性用法及代码示例
- Fabric.js Triangle hasControls属性用法及代码示例
- Fabric.js Image hasControls属性用法及代码示例
- Fabric.js Polygon hasControls属性用法及代码示例
- Fabric.js Textbox hasControls属性用法及代码示例
- Fabric.js Polyline hasControls属性用法及代码示例
- CSS text-decoration-line用法及代码示例
- CSS line-height用法及代码示例
- CSS webkit-line-clamp用法及代码示例
- Fabric.js line cornerSize属性用法及代码示例
- Fabric.js line cornerDashArray属性用法及代码示例
- Fabric.js line cornerColor属性用法及代码示例
- Fabric.js line centeredScaling属性用法及代码示例
- Fabric.js line angle属性用法及代码示例
- Fabric.js line absolutePositioned属性用法及代码示例
- Fabric.js line backgroundColor属性用法及代码示例
- Fabric.js line flipY属性用法及代码示例
- Fabric.js line flipX属性用法及代码示例
- Fabric.js line cornerStrokeColor属性用法及代码示例
- Fabric.js line cornerStyle属性用法及代码示例
- Fabric.js line lockScalingFlip属性用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Fabric.js line hasControls Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。