어떻게 SVG 애니메이션을 되돌릴 수 있습니까? 에서 애니메이션해야합니다.에서 아래쪽?SVG 애니메이션 - 맨 위로부터 50px 뒤로 뒤집고 정지합니다.
그리고 나는 정상에서 당신이 애니메이션을 취소 할 수 있습니다
svg {
border: 3px solid #eee;
display: block;
margin: 1em auto;
}
p {
color: #aaa;
text-align: center;
}
<svg width="100" height="200" viewBox="0 0 200 500">
<path id="motionPath" fill="none" stroke="#ED1E25" stroke-width="4" stroke-miterlimit="10" stroke-dasharray="10,8" d="M53.738,2243.583
c0,0,53.198-53.916,58.558-133.25S64.321,1976.33,49.655,1954.33s-44.331-55.33-44-122.664
c0.111-22.688,9.666-77.666,48.666-129.333c24.376-32.293,40.667-85.68,41.667-118.678c0,0,3.667-63.012-34.333-114.345
c-10.717-14.478-56.003-66.333-47.001-133c3.597-26.633,11.017-64.334,44.509-107s57.491-91.004,53.133-144.337
c-2.348-28.726-11.975-80.665-59.975-133.665C31.307,928.106-6.345,864.978,8.988,791.978c1.793-8.538,15.666-62.331,44.666-95.998
s47.334-113.995,41.334-147.995c-2.515-14.252-5-58.736-54.042-116.589c-16.472-19.432-39.65-81.737-20.958-134.07
c8.677-24.293,20-51.077,26.5-60.577s34-51.25,38-84.25c1.444-11.916,10.5-87-31-144.584"/>
<circle id="circle" r="10" cx="0" cy="0" fill="tomato" />
<animateMotion
xlink:href="#circle"
dur="5s"
begin="0s"
fill="freeze"
repeatCount="1">
<mpath xlink:href="#motionPath" />
</animateMotion>
</svg>
해명 해 주셔서 감사합니다 ... 50px (또는 다른 높이가 될 수 있습니다) 이후에 중지해야한다는 것을 제외하고는 원하는 것을 가지고 있습니다. 다시 올라가면 안됩니다 ... – Reddy
중지하려면'keyPoints = " 1; 0.952 "keyTimes ="0; 1 "' –
네, 죄송합니다. 나는 그것이 왜 돌아야한다고 생각하는지 모르겠습니다. – mxlse