最新的Web开发教程
 

HTML canvas isPointInPath() Method

<画布对象

绘制一个矩形,如果点20,50是在当前路径:

YourbrowserdoesnotsupporttheHTML5canvastag。

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() 4 9 3.6 4 10.1

定义和用法

所述isPointInPath()如果指定的点是在当前路径,否则返回假方法返回true。

JavaScript语法: contextisPointInPath( x,y ) ;

参数值

参数 描述
x 的x坐标,以测试
y y坐标来测试

<画布对象