y1 - SVG: Scalable Vector Graphics 编辑

The y1 attribute is used to specify the first y-coordinate for drawing an SVG element that requires more than one coordinate. Elements that only need one coordinate use the y 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="1" x2="9" y1="1" y2="5" stroke="red" />
  <line x1="1" x2="9" y1="5" y2="5" stroke="green" />
  <line x1="1" x2="9" y1="9" y2="5" stroke="blue" />
</svg>

line

For <line>, y1 defines the y coordinate of the starting 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="1" x2="9" y1="1" y2="5" stroke="red"   />
  <line x1="1" x2="9" y1="5" y2="5" stroke="green" />
  <line x1="1" x2="9" y1="9" y2="5" stroke="blue"  />
</svg>

linearGradient

For <linearGradient>, y1 defines the y coordinate of the starting 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 value0%
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 start at the top left
  corner of the bounding box of the shape it is applied to.
  -->
  <linearGradient y1="0%" id="g0">
    <stop offset="5%"  stop-color="black" />
    <stop offset="50%" stop-color="red"   />
    <stop offset="95%" stop-color="black" />
  </linearGradient>

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

  <!--
  Here the gradient vector start at the bottom left
  corner of the bounding box of the shape it is applied to.
  -->
  <linearGradient y1="100%" id="g1">
    <stop offset="5%"  stop-color="black" />
    <stop offset="50%" stop-color="red"   />
    <stop offset="95%" stop-color="black" />
  </linearGradient>

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

Specifications

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

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

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

发布评论

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

词条统计

浏览:63 次

字数:7221

最后编辑:8年前

编辑次数:0 次

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