side - SVG: Scalable Vector Graphics 编辑

The side attribute determines the side of a path the text is placed on (relative to the path direction).

Only one element is using this attribute: <textPath>

html, body, svg {
  height: 100%;
}

text {
  font: 25px Arial, Helvelica, sans-serif;
}
<svg viewBox="0 0 420 200" xmlns="http://www.w3.org/2000/svg">
  <text>
    <textPath href="#circle1" side="left">Text left from the path</textPath>
  </text>
  <text>
    <textPath href="#circle2" side="right">Text right from the path</textPath>
  </text>

  <circle id="circle1" cx="100" cy="100" r="70" fill="transparent" stroke="silver"/>
  <circle id="circle2" cx="320" cy="100" r="70" fill="transparent" stroke="silver"/>
</svg>

Usage notes

Valueleft | right
Default valueleft
AnimatableYes
left
This value places the text on the left side of the path (relative to the path direction).
right
This value places the text on the right side of the path (relative to the path direction). This effectively reverses the path direction.

Specifications

SpecificationStatusComment
Scalable Vector Graphics (SVG) 2
The definition of 'side' in that specification.
Candidate RecommendationInitial definition

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:49 次

字数:2939

最后编辑:7 年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文