x2 - SVG: Scalable Vector Graphics 编辑

The x2 attribute is used to specify the second x-coordinate for drawing an SVG element that requires more than one coordinate. Elements that only need one coordinate use the x attribute instead.

Two elements are using this attribute: <line>, and <linearGradient>

html,body,svg { height:100% }
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  <line x1="5" x2="1" y1="1" y2="9" stroke="red" />
  <line x1="5" x2="5" y1="1" y2="9" stroke="green" />
  <line x1="5" x2="9" y1="1" y2="9" stroke="blue" />
</svg>

line

For <line>, x2 defines the x coordinate of the ending point of the line.

Value<length> | <percentage>
Default value0
AnimatableYes

Example

html,body,svg { height:100% }
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  <line x1="5" x2="1" y1="1" y2="9" stroke="red"   />
  <line x1="5" x2="5" y1="1" y2="9" stroke="green" />
  <line x1="5" x2="9" y1="1" y2="9" stroke="blue"  />
</svg>

linearGradient

For <linearGradient>, x2 defines the  x coordinate of the ending point of the gradient vector used to map the gradient stop values. The exact behavior of this attribute is influenced by the gradientUnits attributs

Value<length> | <percentage>
Default value100%
AnimatableYes

Example

html,body,svg { height:100% }
<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg">
  <!--
  By default the gradient vector end at the right
  bounding limit of the shape it is applied to
  -->
  <linearGradient x2="100%" id="g0">
    <stop offset="0"    stop-color="black"  />
    <stop offset="100%" stop-color="red" />
  </linearGradient>

  <rect x="1"  y="1" width="8" height="8" fill="url(#g0)" />

  <!--
  Here the gradient vector start at 20% of the left
  bounding limit of the shape it is applied to
  -->
  <linearGradient x2="20%" id="g1">
    <stop offset="0"    stop-color="black"  />
    <stop offset="100%" stop-color="red" />
  </linearGradient>

  <rect x="11" y="1" width="8" height="8" fill="url(#g1)" />
</svg>

Specifications

SpecificationStatusComment
Scalable Vector Graphics (SVG) 2
The definition of 'x2' in that specification.
Candidate RecommendationDefinition for <line>
Scalable Vector Graphics (SVG) 2
The definition of 'x2' in that specification.
Candidate RecommendationDefinition for <linearGradient>
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'x2' in that specification.
RecommendationInitial definition for <line>
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'x2' in that specification.
RecommendationInitial definition for <linearGradient>

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

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

发布评论

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

词条统计

浏览:132 次

字数:7052

最后编辑:7年前

编辑次数:0 次

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