【发布时间】:2015-10-19 20:51:36
【问题描述】:
我想为 SVG 动画循环的每次迭代添加延迟。这是一个简单的例子。
<svg xmlns="http://www.w3.org/2000/svg" width="100px" height="100px">
<circle cx="50" cy="50" r="15" fill="blue">
<animate id="op" attributeType="CSS" attributeName="opacity"
from="1" to="0" dur="3s" repeatCount="indefinite" />
</circle>
</svg>
使用begin只会延迟第一次迭代,那么有没有办法延迟每一次次迭代?
【问题讨论】:
标签: html svg svg-animate