我正在尝试重新创建以下动画:
我无法让一条线在拐角处正确设置动画。我试过像这样使用 animateMotion-element:
<line class="testLine" x1="10" y1="10" x2="100" y2="10" stroke="white">
<animateMotion dur="1.6s" repeatCount="indefinite"
path="M 10 10 L 390 10
M 390 10 L 390 290
M 390 290 L 10 290
M 10 290 L 10 10">
</animateMotion>
</line>
但线条不是圆润的圆角。关于如何让它在拐角处平滑移动的任何想法,如 GIF 所示?