SVGGeometryElement:isPointInStroke() 方法

**SVGGeometryElement.isPointInStroke()** 方法确定给定点是否在元素的描边形状内。应用正常的命中测试规则;元素上 pointer-events 属性的值决定了点是否被认为在描边内。point 参数被解释为元素本地坐标系中的一个点。

语法

js
isPointInStroke(point)

参数

point

一个被解释为元素本地坐标系中的点的对象。

返回值

一个布尔值,指示给定点是否在描边内。

示例

SVG

html
<svg
  viewBox="0 0 100 100"
  width="150"
  height="150"
  xmlns="http://www.w3.org/2000/svg">
  <circle
    id="circle"
    cx="50"
    cy="50"
    r="45"
    fill="white"
    stroke="black"
    stroke-width="10" />
</svg>

JavaScript

js
const svg = document.getElementsByTagName("svg")[0];
const circle = document.getElementById("circle");
const points = [
  ["10", "10"],
  ["40", "30"],
  ["70", "40"],
  ["15", "75"],
  ["83", "83"],
];

for (const point of points) {
  let isPointInStroke;

  try {
    const pointObj = new DOMPoint(point[0], point[1]);
    isPointInFill = circle.isPointInStroke(pointObj);
  } catch (e) {
    // Fallback for browsers that don't support DOMPoint as an argument
    const pointObj = svg.createSVGPoint();
    pointObj.x = point[0];
    pointObj.y = point[1];
    isPointInStroke = circle.isPointInStroke(pointObj);
  }

  console.log(`Point at ${point[0]},${point[1]}: ${isPointInStroke}`);

  const pointEl = document.createElementNS(
    "http://www.w3.org/2000/svg",
    "circle",
  );
  pointEl.style.cx = point[0];
  pointEl.style.cy = point[1];
  pointEl.style.r = 5;
  pointEl.style.fill = isPointInStroke ? "seagreen" : "rgb(255 0 0 / 50%)";
  svg.appendChild(pointEl);
}

结果

规范

规范
可缩放矢量图形 (SVG) 2
# __svg__SVGGeometryElement__isPointInStroke

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。