gpt4 book ai didi

animation - animateMotion SVG,延迟?

转载 作者:行者123 更新时间:2023-12-01 09:57:31 24 4
gpt4 key购买 nike

以下代码沿特定的 #pat 路径为 img 设置动画。

<switch>
<g i:extraneous="self">
<path id="pat" style="stroke:url(#grad);" class="mypath" d="
M144.668,123.467c0,0-13.001-133.999-143.668-121.665"/>
</g>
</switch>


<image xlink:href="http://m.kaon.com/icon/17001.png" width="30" height="30" x="-15" y="-15">
<animateMotion rotate="auto" dur="3s" repeatCount="indefinite">
<mpath xlink:href="#pat"/>
</animateMotion>
</image>

有什么方法可以无限循环播放动画,但中间有延迟。像动画 0->1,等待 5s,动画 0-1。

使用此资源: http://www.w3.org/TR/SVG11/animate.html#AnimateMotionElement .

最佳答案

你可以添加另一个假/暂停元素来链接开始/结束......第一个只是一个没有真正做任何事情的暂停(所以当它不在路径上时它不会消失)。

<animateTransform begin="myanim.end" id="pause" dur="3s" type="translate" attributeType="XML" attributeName="transform"/>

<animateMotion id="myanim" dur="6s" begin="0; pause.end" fill="freeze">
<mpath xlink:href="#theMotionPath"/>
</animateMotion>

示例 fiddle

关于animation - animateMotion SVG,延迟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22723615/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com