【发布时间】:2018-11-10 01:53:11
【问题描述】:
我正在用这样的 SVG 创建一个网站。不过,我对实时站点有一些问题。首先,SVG 中的文本由于某种原因没有使用该字体。如果我在这里或在 codepen 上发布代码,它可以工作,但不能在实时站点上。另一个问题是文本定位在 Chrome 或 Microsoft Edge 中不一致。我已经包含了 HTML 和 JS 代码以供参考。
HTML
<svg viewBox="0 40 100 40">
<defs><path id="textPath"/></defs>
<g id="testGroupC2" >
<style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Raleway:thin');
text{
font-size: 4pt;
fill: #ffffff;
text-anchor: middle;
font-family: 'Raleway';
z-index: 2;
}
</style>
<path id="testPath2"/>
<text>
<textpath xlink:href="#textPath" startOffset="50%" >
<tspan x="0" dy="-5.5">Home</tspan>
</textpath>
</text>
</g>
</svg>
JS
// JavaScript Document
const rad = Math.PI / 180;
let cx = 50, cy = 100, R = 50, r = 35, A = 40 , a = 5, o=4;
// o for offset
testGroupC2.setAttributeNS(null, "transform", `rotate(${-90 -(A / 2) - a} ${cx} ${cy})`)
// control points for the quadratic Bézier
let px1 = cx + R * Math.cos(0);
let py1 = cy + R * Math.sin(0);
let px2 = cx + R * Math.cos((2*a + A)*rad);
let py2 = cy + R * Math.sin((2*a + A)*rad);
let px3 = cx + r * Math.cos((2*a + A)*rad);
let py3 = cy + r * Math.sin((2*a + A)*rad);
let px4 = cx + r * Math.cos(0);
let py4 = cy + r * Math.sin(0);
// points used to draw the shape
let x11 = cx + (R-o) * Math.cos(0);
let y11 = cy + (R-o) * Math.sin(0);
let x1 = cx + R * Math.cos(a*rad);
let y1 = cy + R * Math.sin(a*rad);
let x2 = cx + R * Math.cos((a + A)*rad);
let y2 = cy + R * Math.sin((a + A)*rad);
let x21 = cx + (R-o) * Math.cos((2*a + A)*rad);
let y21 = cy + (R-o) * Math.sin((2*a + A)*rad);
let x31 = cx + (r+o) * Math.cos((2*a + A)*rad);
let y31 = cy + (r+o) * Math.sin((2*a + A)*rad);
let x3 = cx + r * Math.cos((a + A)*rad);
let y3 = cy + r * Math.sin((a + A)*rad);
let x4 = cx + r * Math.cos(a*rad);
let y4 = cy + r * Math.sin(a*rad);
let x41 = cx + (r+o) * Math.cos(0);
let y41 = cy + (r+o) * Math.sin(0);
/*
No rounded corners
let d = `M${x1},${y1} A${R},${R},0 0,1 ${x2},${y2}
L${x3},${y3} A${r},${r},0 0,0 ${x4},${y4}
L${x1},${y1}Z`;*/
/*
Beveled corners
let d = `M${x1},${y1}
A${R},${R},0 0,1 ${x2},${y2}
L${x21},${y21}
L${x31},${y31}
L${x3},${y3}
A${r},${r},0 0,0 ${x4},${y4}
L${x41},${y41}
L${x11},${y11}
L${x1},${y1}Z`;*/
// Rounded corners with quadratic Bézier curves
d = `M${x1},${y1}
A${R},${R},0 0,1 ${x2},${y2}
Q${px2},${py2} ${x21},${y21}
L${x31},${y31}
Q${px3},${py3} ${x3},${y3}
A${r},${r},0 0,0 ${x4},${y4}
Q${px4},${py4} ${x41},${y41}
L${x11},${y11}
Q${px1},${py1} ${x1},${y1}Z`;
testPath2.setAttributeNS(null,"d",d);
/* based on the 2nd A-curve of the testPath,
but last point and starting point switched,
as well as the sweep-flag of the curve */
dtext = `M${x4},${y4}
A${r},${r},0 0,1 ${x3},${y3}`;
textPath.setAttributeNS(null,"d",dtext);
【问题讨论】:
-
您的 JAvascript 变量
testGroupC2从未定义。 -
是的,再检查一次。
-
您在上面发布的代码只有
testGroupC2.setAttributeNS(..),但从未初始化变量(它可能需要为const testGroupC2 = document.getElementById('testGroupC2'))。顺便说一句,脚本末尾附近的textPath和textPath2也是如此。也许您的代码中有一部分没有发布?只是想确定一下。 -
代码运行良好,它绘制了必要的 SVG 形状并将文本定位在 Firefox 和 Safari 中。这些行指的是 HTML 中的 ID。
-
我需要帮助,而不是挑剔或批评代码标准等。如果您对我的上述问题有解决方案,请仅发表评论。谢谢。
标签: html css svg cross-browser