HTML5 canvas isPointInPath() 方法
实例
绘制一个矩形,如果点 20,50 位于当前路径中:
<canvas id="myCanvas" class="canvas_example"> Your browser does not support the HTML5 canvas tag. </canvas>
JavaScript:
- var c=document.getElementById("myCanvas");
- var ctx=c.getContext("2d");
- ctx.rect(20,20,150,100);
- if (
ctx.isPointInPath(20,50)
)- {
- ctx.stroke();
- };
浏览器支持
Internet Explorer 9、Firefox、Opera、Chrome 以及 Safari 支持 isPointInPath() 方法。
注释:Internet Explorer 8 或更早的浏览器不支持 <canvas> 元素。
定义和用法
isPointInPath() 方法返回 true,如果指定的点位于当前路径中;否则返回 false。
JavaScript 语法:
- context.isPointInPath(x,y);
参数值
参数 | 描述 |
---|---|
x | 测试的 x 坐标 |
y | 测试的 y 坐标 |