Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

attributeName

这篇翻译不完整。请帮忙从英语翻译这篇文章

« SVG属性参考主页

该属性标识了在一个动画动作环节中,父元素的需要被改变的属性名。

用法

类别 动画属性目标属性
<attributeName>
可变性 No
规范文档 SVG 1.1 (2nd Edition)

示例

下面的示例使用了y作为attributeName,通过改变一个矩形在Y轴上的位置来变动这个矩形。

<?xml version="1.0"?>
<svg width="250" height="250"
  viewPort="0 0 250 250" version="1.1"
  xmlns="https://www.w3.org/2000/svg">
  <rect x="50" y="50" width="100" height="100">
    <animate attributeType="XML"
      attributeName="y"
      from="0" to="50"
      dur="5s"/>
  </rect>
</svg>

 

元素

下列元素可以使用attributeName属性:

文档标签和贡献者

 此页面的贡献者: fanxiaojie
 最后编辑者: fanxiaojie,