HTML canvas isPointInPath() 方法
實(shí)例
如果點(diǎn) 20,50 位于當(dāng)前路徑中,則繪制一個(gè)矩形:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.rect(20,20,150,100);
if (ctx.isPointInPath(20,50))
{
ctx.stroke();
};
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> 元素。
定義和用法
如果指定的點(diǎn)位于當(dāng)前路徑中,isPointInPath() 方法返回 true,否則返回 false。
JavaScript 語(yǔ)法: | context.isPointInPath(x,y); |
---|
參數(shù)值
參數(shù) | 描述 |
---|---|
x | 要測(cè)試的 x 坐標(biāo)。 |
y | 要測(cè)試的 y 坐標(biāo)。 |
HTML canvas 參考手冊(cè)
更多建議: