最新的Web開發教程
 

HTML canvas isPointInPath() Method

<HTML畫布參考

繪製一個矩形,如果點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() 9

定義和用法

isPointInPath()指定的點是在當前路徑,否則為false方法返回true。

JavaScript語法: context.isPointInPath(x,y);

參數值

參數 描述
x 的x坐標,以測試
y y坐標來測試

<HTML畫布參考