miterLimit属性用于或返回最大斜接长度。用于防止斜接长度过长。斜接长度是两条线相交的内角和外角之间的距离。
用法:
context.miterLimit = number;
属性值:
- number:它是一个正数,表示最大斜接长度。
例:
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green"> GeeksforGeeks </h1>
<h3>Canvas miterLimit Property</h3>
<canvas id="gfgCanvas"
width="400"
height="200"
style="border:2px solid ">
</canvas>
<script>
var gfg = document.getElementById("gfgCanvas");
var context = gfg.getContext("2d");
context.lineWidth = 10;
context.lineJoin = "miter";
context.miterLimit = 5;
context.moveTo(80, 80);
context.lineTo(200, 108);
context.lineTo(80, 136);
context.stroke();
</script>
</center>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML canvas miterLimit属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- 苹果Safari
- Opera
相关用法
- CSS stroke-miterlimit用法及代码示例
- HTML canvas shadowOffsetX用法及代码示例
- HTML canvas shadowOffsetY用法及代码示例
- HTML canvas shadowBlur用法及代码示例
- HTML canvas globalAlpha用法及代码示例
- HTML canvas textBaseline用法及代码示例
- HTML canvas font用法及代码示例
- HTML canvas textAlign用法及代码示例
- HTML canvas lineWidth用法及代码示例
- HTML canvas lineJoin用法及代码示例
- HTML canvas fillStyle用法及代码示例
- HTML canvas lineCap用法及代码示例
- HTML canvas strokeStyle用法及代码示例
- HTML canvas shadowColor用法及代码示例
注:本文由纯净天空筛选整理自shubham_singh大神的英文原创作品 HTML | canvas miterLimit Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。