SVGPoint

已弃用:此功能不再推荐。尽管一些浏览器可能仍然支持它,但它可能已经从相关的 Web 标准中删除,可能正在被删除,或者可能仅出于兼容性目的而保留。避免使用它,并尽可能更新现有代码;请查看此页面底部的兼容性表格,以指导您的决定。请注意,此功能可能随时停止工作。

警告:SVGPoint 已弃用。请改用 DOMPointDOMPointReadOnly

SVGPoint 在 SVG 坐标系中表示一个二维或三维点。

语法

js
createSVGPoint()

返回值为一个 SVGPoint 对象。

示例

js
// Create an SVGPoint in the user coordinate system
let s = document.getElementById("SVG-ElementID").createSVGPoint();

// Then, set the x and y values of the returned SVGPoint object
// (which is the variable `s`)
s.y = 10;
s.x = 10;

浏览器兼容性

BCD 表格仅在浏览器中加载