diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/svg/attribute/from | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/svg/attribute/from')
-rw-r--r-- | files/zh-cn/web/svg/attribute/from/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/files/zh-cn/web/svg/attribute/from/index.html b/files/zh-cn/web/svg/attribute/from/index.html new file mode 100644 index 0000000000..59e5f73f3c --- /dev/null +++ b/files/zh-cn/web/svg/attribute/from/index.html @@ -0,0 +1,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> |