如何无限重复整个svg
我的意思是,在我的 SVG 停止完成动画后,我希望动画重新开始并结束,然后再次开始,依此类推。
我尝试过:
<svg>
<animate repeatCount="indefinite"/>
</svg>
但是不起作用。
I mean after my SVG stops completing the animation I want the animation to start over again and end and then again start over and so on.
I tried:
<svg>
<animate repeatCount="indefinite"/>
</svg>
But it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 示例 animMotion01 中的 w3 SVG 规范,用于说明 SVG 动画的相当简化的示例(包括使用
repeatCount="indefinite" ):
See example animMotion01 in the w3 SVG spec for a fairly reduced example illustrating SVG animation (including use of
repeatCount="indefinite"
):