您可以无限制地停止和重复动画,但如果重新启动无限动画,它将失去其累积值并从初始值开始。
也许我应该用一个例子来澄清;拍这个动画:
<animate id="main"
attributeName="transform" attributeType="XML"
begin="startbox.click" dur="1s" end="endbox.click"
from="rotate(0)" to="rotate(360)"
additive="sum"
accumulate="sum"
fill="freeze"
repeatCount="indefinite"
/>
如果我停止播放此动画,并启动另一个影响相同对象旋转的动画(id="second"
),second
将从main
停止的位置完全继续。但如果我通过单击startbox
(或任何其他事件)来启动此项,它将减去main
所做的所有差异并在开始之前重置旋转。
我想要的是一个正确的“暂停”,我可以继续以前动画停止的地方。当然,我可以添加固定数量的相同动画和相同数量的相同开始/停止按钮来模拟效果,但这不是一个好的解决方案。特别是因为暂停次数有限。
整个例子(似乎只适用于Opera)
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
xmlns="http://www.w3.org/2000/svg" version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>Click example</desc>
<g>
<rect id="startbox"
x="10" y="10"
width="20" height="20"
stroke="none" fill="green"
/>
<rect id="endbox"
x="10" y="40"
width="20" height="20"
stroke="none" fill="red"
/>
<g transform="translate(200,200)">
<rect
x="0" y="0"
width="50" height="5"
stroke="#10e9f3" fill="#30ffd0"
>
<animate
attributeName="transform" attributeType="XML"
begin="startbox.click" dur="1s" end="endbox.click"
from="rotate(0)" to="rotate(360)"
additive="sum"
accumulate="sum"
fill="freeze"
repeatCount="indefinite"
/>
</rect>
</g>
</g>
</svg>
答案 0 :(得分:11)
内置于SVG
SVGRoot.pauseAnimations();
答案 1 :(得分:4)
使用animate元素为变换设置动画无效,必须使用animateTransform。见http://www.w3.org/TR/SVG/animate.html#AnimationAttributesAndProperties
如果使用该UA设置动画,则应将您的测试用例报告给Opera。
<animateTransform
attributeName="transform" attributeType="XML"
type="rotate"
begin="startbox.click" dur="1s" end="endbox.click"
from="0" to="360"
additive="sum"
accumulate="sum"
fill="freeze"
repeatCount="indefinite"
/>
关于提出的问题,你可以pause animations using javascript但是对于SVG 1.1,据我所知,你不能以声明的方式做到这一点。