最新的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坐標來測試

<畫布對象