HTML5 canvas isPointInPath() 方法
实例
20,50 径中:
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 坐标 |