举报投诉联系我们 手机版 热门标签 名动网
您的位置:名动网 > HTML canvas isPointInPath() 方法

HTML canvas isPointInPath() 方法

2023-05-11 05:20 HTML参考手册

 HTML canvas isPointInPath() 方法

HTML canvas isPointInPath() 方法

HTML canvas 参考手册 HTML canvas 参考手册

实例

如果点 20,50 位于当前路径中,则绘制一个矩形:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.rect(20,20,150,100);
if (ctx.isPointInPath(20,50))
   {
   ctx.stroke();
   };


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 isPointInPath()方法。

注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。


定义和用法

如果指定的点位于当前路径中,isPointInPath() 方法返回 true,否则返回 false。

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

参数值

参数描述
x要测试的 x 坐标。
y要测试的 y 坐标。


HTML canvas 参考手册 HTML canvas 参考手册
阅读全文
以上是名动网为你收集整理的 HTML canvas isPointInPath() 方法全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 名动网 mdwl.vip 版权所有 联系我们