我想写一个不依赖于浏览器的代码。我的目标是显示一个带有居中文本的弧线:
为此,我使用 d3.js 绘制弧线:
var elem = vis.append("svg:path")
.attr("d", myarc(inR, outR, startA, endA, orient))
.attr("transform", "translate(200,200)")
.attr("fill", "rgb(255, 255, 255)")
.style("stroke-width", 0.2)
.style("stroke", "#BBB")
.attr("id", "0_1");
然后我将文本绑定到它以使其跟随圆弧,然后将其从方向上的圆弧半径的y
一半和方向上的角长度的一半x
移动:
text.append("text")
.style("font-size", "14px")
.style("font-weight", "bold")
.attr("dx", spaceLength / 2.0)
.attr("dy", 25)
.attr("method", "stretch")
.attr("spacing", "auto")
.append("textPath")
.attr("xlink:href", "#0_1")
.attr("text-anchor", "middle")
.text("Test text :)");
我的问题是 Chrome 和 Firefox 不会以相同的方式呈现此代码。该dx
属性在 Chrome 中将文本向右移动的次数是 Firefox 中的两倍。
以下是它在 Firefox 中的呈现方式:
为了让它在 Firefox 中工作,我必须替换:
.attr("dx", spaceLength / 2.0)
经过
.attr("dx", spaceLength)
如何在不实现浏览器检测功能的情况下让这段代码在两个浏览器上显示相同?
是什么造成了两种浏览器中呈现的这种差异?
重现该问题的完整代码示例可在此处获得:http: //jsfiddle.net/taxQK/1/
非常感谢