blob: 59e5f73f3c9d07cee5dac0ae770bfb5d7ca315a9 (
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
|
---
title: from
slug: Web/SVG/Attribute/From
translation_of: Web/SVG/Attribute/From
---
<p>« <a href="/en/SVG/Attribute" title="en/SVG/Attribute">SVG属性参考</a></p>
<p>这个属性是在svg动画发生过程中被修改的属性的初始值。当同时使用了这个属性和 <a href="/en-US/docs/Web/SVG/Attribute/To">to</a> 属性, animation将会修改这个这个设定的动画属性的值从from属性的值到to属性的值。</p>
<h2 id="用法">用法</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="row">类别</th>
<td>动画属性值</td>
</tr>
<tr>
<th scope="row">值</th>
<td><value></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#FromAttribute" title="http://www.w3.org/TR/SVG/animate.html#FromAttribute">SVG 1.1 (2nd Edition)</a></td>
</tr>
</tbody>
</table>
<p>这个属性的准确的值类型取决于这个属性将要被用作动画的属性的值。</p>
<h2 id="例子">例子</h2>
<p>这个例子给from属性了一个100的值,让动画从100的宽度开始运行。</p>
<pre class="brush: xml"><?xml version="1.0"?>
<svg width="200" height="200"
viewPort="0 0 200 200" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="100" height="100">
<animate attributeType="XML"
attributeName="width"
from="100" to="150"
dur="3s"
fill="freeze"/>
</rect>
</svg></pre>
<h2 id="元素">元素</h2>
<p>如下的元素能使用from属性</p>
<ul>
<li>{{ SVGElement("animate") }}</li>
<li>{{ SVGElement("animateColor") }}</li>
<li>{{ SVGElement("animateMotion") }}</li>
<li>{{ SVGElement("animateTransform") }}</li>
</ul>
|