过时
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
CanvasRenderingContext2D
方法
removeHitRegion()
removes a given hit region from the canvas.
void ctx.removeHitRegion(id);
id
DOMString
表示
id
of the region that is to be removed.
removeHitRegion
方法
此范例演示
removeHitRegion()
方法。
<canvas id="canvas"></canvas>
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
// Set a hit region
ctx.addHitRegion({id: 'eyes'});
// Remove it from the canvas
ctx.removeHitRegion('eyes');
Canvas hit regions have been removed from the WHATWG Living Standard, although discussions about future standardization are ongoing. See https://github.com/whatwg/html/issues/3407 了解更多信息。
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
removeHitRegion
弃用
非标
|
Chrome
Yes
Disabled
|
Edge
79
Disabled
|
Firefox
30
Disabled
|
IE Yes | Opera Yes | Safari Yes | WebView Android No | Chrome Android No |
Firefox Android
30
Disabled
|
Opera Android Yes | Safari iOS Yes | Samsung Internet Android No |
完整支持
不支持
实验。期望将来行为有所改变。
非标。预期跨浏览器支持较差。
弃用。不要用于新网站。
用户必须明确启用此特征。
CanvasRenderingContext2D
addHitRegion()
arc()
arcTo()
beginPath()
bezierCurveTo()
clearHitRegions()
clearRect()
clip()
closePath()
createImageData()
createLinearGradient()
createPattern()
createRadialGradient()
drawFocusIfNeeded()
drawImage()
drawWidgetAsOnScreen()
drawWindow()
ellipse()
fill()
fillRect()
fillText()
getImageData()
getLineDash()
getTransform()
isPointInPath()
isPointInStroke()
lineTo()
measureText()
moveTo()
putImageData()
quadraticCurveTo()
rect()
removeHitRegion()
resetTransform()
restore()
rotate()
save()
scale()
scrollPathIntoView()
setLineDash()
setTransform()
stroke()
strokeRect()
strokeText()
transform()
translate()