aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/svg/attribute/attributename/index.html
blob: 0f7b065b0252fcba14fcd2e8e7d3b7699c0ca59f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: attributeName
slug: Web/SVG/Attribute/attributeName
tags:
  - SVG
  - SVG属性
  - 需要兼容性表
translation_of: Web/SVG/Attribute/attributeName
---
<p>« <a href="/en/SVG/Attribute" title="en/SVG/Attribute">SVG属性参考主页</a></p>

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

<h2 id="用法">用法</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="row">类别</th>
   <td>动画属性目标属性</td>
  </tr>
  <tr>
   <th scope="row"></th>
   <td>&lt;attributeName&gt;</td>
  </tr>
  <tr>
   <th scope="row">可变性</th>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">规范文档</th>
   <td><a class="external" href="http://www.w3.org/TR/SVG/animate.html#AttributeNameAttribute" title="http://www.w3.org/TR/SVG/animate.html#AttributeNameAttribute">SVG 1.1 (2nd Edition)</a></td>
  </tr>
 </tbody>
</table>

<h2 id="示例">示例</h2>

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

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

<p> </p>

<h2 id="元素">元素</h2>

<p>下列元素可以使用<code>attributeName</code>属性:</p>

<ul>
 <li>{{ SVGElement("animate") }}</li>
 <li>{{ SVGElement("animateColor") }}</li>
 <li>{{ SVGElement("animateTransform") }}</li>
 <li>{{ SVGElement("set") }}</li>
</ul>