CanvasRenderingContext2D.miterLimit property of the Canvas 2D API sets the miter limit ratio.

For more info about miters, see Applying styles and color Canvas tutorial .

句法

ctx.miterLimit = value;
					

选项

value
A number specifying the miter limit ratio, in coordinate space units. Zero, negative, Infinity ,和 NaN values are ignored. The default value is 10.0 .

范例

使用 miterLimit property

See the chapter Applying styles and color Canvas tutorial 了解更多信息。

Playable code
<canvas id="canvas" width="400" height="200" class="playable-canvas"></canvas>
<div class="playable-buttons">
  <input id="edit" type="button" value="Edit" />
  <input id="reset" type="button" value="Reset" />
</div>
<textarea id="code" class="playable-code">
ctx.beginPath();
ctx.moveTo(0,0);
ctx.lineWidth = 15;
ctx.lineTo(100, 100);
ctx.stroke();</textarea>
					
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
var textarea = document.getElementById("code");
var reset = document.getElementById("reset");
var edit = document.getElementById("edit");
var code = textarea.value;
function drawCanvas() {
  ctx.clearRect(0, 0, canvas.width, canvas.height);
  eval(textarea.value);
}
reset.addEventListener("click", function() {
  textarea.value = code;
  drawCanvas();
});
edit.addEventListener("click", function() {
  textarea.focus();
})
textarea.addEventListener("input", drawCanvas);
window.addEventListener("load", drawCanvas);
					
Screenshot Live sample

规范

规范 状态 注释
HTML 实时标准
The definition of 'CanvasRenderingContext2D.miterLimit' in that specification.
实时标准

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
miterLimit Chrome Yes Edge 12 Firefox 1.5 IE Yes Opera Yes Safari Yes WebView Android Yes Chrome Android Yes Firefox Android 4 Opera Android Yes Safari iOS Yes Samsung Internet Android Yes

图例

完整支持

完整支持

  • In WebKit- and Blink-based Browsers, a non-standard and deprecated method ctx.setMiterLimit() is implemented in addition to this property.

Gecko-specific notes

  • Starting Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1), setting miterLimit to a negative value no longer throws an exception; instead, it properly ignores non-positive values.

另请参阅

元数据

  • 最后修改: