dy

dy 属性表示沿 Y 轴对元素或其内容位置的偏移量。

您可以将此属性与以下 SVG 元素一起使用

示例

html
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  <!-- Lines materialized the position of the glyphs -->
  <line x1="10%" x2="10%" y1="0" y2="100%" />
  <line x1="0" x2="100%" y1="30%" y2="30%" />
  <line x1="0" x2="100%" y1="80%" y2="80%" />

  <!-- Some reference text -->
  <text x="10%" y="30%" fill="grey">SVG</text>

  <!-- The same text with a shift along the y-axis -->
  <text dy="50%" x="10%" y="30%">SVG</text>
</svg>
css
line {
  stroke: red;
  stroke-width: 0.5px;
  stroke-dasharray: 3px;
}

feDropShadow

对于 <feDropShadow>dy 定义下落阴影的 Y 偏移量。用于解析属性值的单位由 <filter> 元素的 primitiveUnits 属性设置。

<number>
默认值 2
可动画

feOffset

对于 <feOffset>dy 定义过滤输入图形的 Y 偏移量。用于解析属性值的单位由 <filter> 元素的 primitiveUnits 属性设置。

<number>
默认值 0
可动画

glyphRef

警告: 从 SVG2 开始,<glyphRef> 已被弃用,不应使用。

对于 <glyphRef>dy 定义字形的 Y 偏移量,以字体度量系统为单位。

<number>
默认值 0
可动画

文本

对于 <text>,如果包含单个值,dy 定义所有字形的 Y 轴偏移量。

如果有多个值,dy 定义每个字形相对于前一个字形的 Y 轴偏移量。如果值少于字形,则剩余字形使用 0 值。如果值多于字形,则多余的值将被忽略。

(<length> | <percentage>) 列表
默认值
可动画

示例

html
<svg viewBox="0 0 150 100" xmlns="http://www.w3.org/2000/svg">
  <!-- Horizontal lines -->
  <line x1="0" x2="100%" y1="30" y2="30" />
  <line x1="0" x2="100%" y1="40" y2="40" />
  <line x1="0" x2="100%" y1="50" y2="50" />
  <line x1="0" x2="100%" y1="60" y2="60" />

  <!-- Vertical lines -->
  <line x1="10" x2="10" y1="0" y2="100%" />
  <line x1="50" x2="50" y1="0" y2="100%" />
  <line x1="90" x2="90" y1="0" y2="100%" />

  <!-- Behaviors change based on the number of values in the attributes -->
  <text dy="20" x="10" y="30">SVG</text>
  <text dy="0 10" x="50" y="30">SVG</text>
  <text dy="0 10 20" x="90" y="30">SVG</text>
</svg>
css
line {
  stroke: red;
  stroke-width: 0.5px;
  stroke-dasharray: 3px;
}

tref

警告: 从 SVG2 开始,<tref> 已被弃用,不应使用。

对于 <tref>,如果包含单个值,dy 定义所有字形的 Y 轴偏移量。

如果有多个值,dy 定义每个字形相对于前一个字形的 Y 轴偏移量。如果值少于字形,则剩余字形使用 0 值。如果值多于字形,则多余的值将被忽略。

(<length> | <percentage>) 列表
默认值
可动画

tspan

对于 <tspan>,如果包含单个值,dy 定义所有备用字形的 Y 轴偏移量。

如果有多个值,dy 定义每个字形相对于前一个字形的 Y 轴偏移量。如果值少于字形,则剩余字形使用 0 值。如果值多于字形,则多余的值将被忽略。

(<length> | <percentage>) 列表
默认值
可动画

规范

规范
过滤效果模块级别 1
# element-attrdef-fedropshadow-dy
过滤效果模块级别 1
# element-attrdef-feoffset-dy
可缩放矢量图形 (SVG) 2
# TextElementDYAttribute