例
绘制一个矩形,如果点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();
};
试一试» 浏览器支持
在表中的数字指定完全支持方法的第一个浏览器的版本。
方法 | |||||
---|---|---|---|---|---|
isPointInPath() | 是 | 9 | 是 | 是 | 是 |
定义和用法
该isPointInPath()指定的点是在当前路径,否则为false方法返回true。
JavaScript语法: | context.isPointInPath(x,y); |
---|
参数值
参数 | 描述 |
---|---|
x | 的x坐标,以测试 |
y | y坐标来测试 |