SVG 文本路径元素在使用 Javascript 生成时在 Firefox 中呈现不正确

SVG textpath element renders incorrectly in Firefox when generated using Javascript

本文关键字:Firefox 不正确 Javascript 路径 文本 元素 SVG      更新时间:2023-09-26

以下代码在Chrome,IE11和Opera中呈现良好,但在Firefox的左上角显示文本:

var svgNS = "http://www.w3.org/2000/svg";
var xlinkNS = "http://www.w3.org/1999/xlink";
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
svg.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:xlink", "http://www.w3.org/1999/xlink");
svg.setAttributeNS(null, "viewBox", "0 0 1000 1000");
svg.id = "clockSVG";
document.body.appendChild(svg);
var defs = document.createElement('defs');
defs.id = "defs";
svg.appendChild(defs);
var path = document.createElementNS(svgNS,"path");
path.setAttribute("d","M75,20 l100,0 l100,30 q0,100 150,100");
path.setAttribute("id","myTextPath2");
defs.appendChild(path);
var text = document.createElementNS(svgNS,"text");
text.setAttribute("x","10");
text.setAttribute("y","100");
text.setAttribute("fill","black");
svg.appendChild(text);
var textPath = document.createElementNS(svgNS,"textPath");
textPath.setAttributeNS(xlinkNS, "xlink:href", "#myTextPath2");
textPath.textContent = "Text along a more advanced path with lines and curves.";
text.appendChild(textPath);
svg.appendChild(text);

如果我调用 text.getBBox((,它会显示它拥抱左侧屏幕边缘并以某种方式收到负 y 值:

SVGRect { x: 0, y: -14.825797080993652, width: 355.164306640625, height: 18.532245635986328 }

经过一些实验,我发现,要在 HTML 中声明时在 Firefox 中正确呈现 textPath 元素,textPath 元素的内容必须与标签在同一行。

这将呈现一个奇怪的偏移:

<text x="10" y="100" style="stroke: #000000;">
    <textPath xlink:href="#myTextPath2">
        Text along a more advanced path with lines and curves.
    </textPath>
</text>

这将正确呈现:

<text x="10" y="100" style="stroke: #000000;">
    <textPath xlink:href="#myTextPath2">Text along a more advanced path with lines and curves.</textPath>
</text>

(但是,如果文本的 x 和 y 属性设置为 0 或留空,则会正确呈现(

所以我尝试将必要的 HTML 构造为一行字符串并插入:

var textPathString = '<textPath xlink:href="#myTextPath2">Text along a more advanced path with lines and curves.</textPath>';
text.innerHTML = textPathString;

不幸的是,这不会呈现任何内容(在 Chrome 中也不起作用(。

如何确保 Firefox 正确显示 JavaScript 生成的文本路径?

这些错误是错误吗,我应该报告它们吗?

任何和所有的帮助将不胜感激,因为我的项目依赖于能够动态生成文本路径!

你写的是createElement("defs"),而不是你在所有其他点上使用的createElementNS