是否可以创建 Html 标签将跟随 svg 路径动画的动画?

Is it possible create animation where Html tag will follow svg path animation?

我正在 javascript 使用 svg 路径创建自定义进度动画。我从后端获取有关应该移动多少路径的数据。它工作正常但在动画完成的那个地方我需要一些带有百分比的文本。我知道可以用 svg 文本来做,但这在样式上是有限的。 (我只能将其设置为 svg)所以我的问题是:是否可以创建动画,其中 Html 标签例如 p 将遵循 svg 路径动画?或者我如何解决它的任何其他想法? Svg 路径没有规则的形状。

我举了两个例子。第一个是“仅”使用 SVG 元素,下一个是 <foreignObject> 和 HTML <span>.

在此示例中,<text> 遵循动画运动路径。必须更新属性 keyPointsend 以使文本遵循 stroke-dasharray:

var path = document.getElementById('path');
var text = document.getElementById('text');
var motion = document.getElementById('motion');

document.forms.rangeform.range.addEventListener('change', e => {
  path.style.strokeDasharray = `${e.target.value} 100`;
  text.textContent = `${e.target.value}%`;
  motion.attributes['keyPoints'].value = `${e.target.value/100};${e.target.value/100}`;
  motion.attributes['end'].value = `${e.target.value}ms`;
});
<form name="rangeform">
  <input type="range" name="range" min="0" max="100" value="75">
</form>
<svg viewBox="0 0 120 80" width="400" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <path id="path2" d="M 10 50 C 20,50 25,30 50,30 S 80,50 80,50"
      pathLength="100" stroke-linecap="round" fill="none" />
  </defs>
  <use href="#path2" stroke-dasharray="none" stroke="lightblue" stroke-width="2" />
  <use href="#path2" id="path" stroke-dasharray="75 100" stroke-dashoffset="0"
    stroke="navy" stroke-width="4" />
  <text style="font-family:sans-serif;font-size:8px;font-weight:bold;"
    transform="translate(0 -5)">
    <tspan id="text">75%</tspan>
    <animateMotion id="motion" rotate="0" begin="0s" dur="100ms"
      end="75ms" keyPoints=".75;.75" keyTimes="0;1" fill="freeze">
      <mpath href="#path2"/>
    </animateMotion>
  </text>
</svg>

这里我用<foreignObject>做了一个例子。为了让它移动,我必须创建一个父元素 (<g>),因为我无法在 <foreignObject> 本身上制作动画。

var path = document.getElementById('path');
var text = document.getElementById('text');
var motion = document.getElementById('motion');

document.forms.rangeform.range.addEventListener('change', e => {
  path.style.strokeDasharray = `${e.target.value} 100`;
  text.textContent = `${e.target.value}%`;
  motion.attributes['keyPoints'].value = `${e.target.value/100};${e.target.value/100}`;
  motion.attributes['end'].value = `${e.target.value}ms`;
});
span {
  font-size: 8px;
  font-family: sans-serif;
  font-weight: bold;
}
<form name="rangeform">
  <input type="range" name="range" min="0" max="100" value="75">
</form>
<svg viewBox="0 0 120 80" width="400" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <path id="path2" d="M 10 50 C 20,50 25,30 50,30 S 80,50 80,50"
      pathLength="100" stroke-linecap="round" fill="none" />
  </defs>
  <use href="#path2" stroke-dasharray="none" stroke="lightblue" stroke-width="2" />
  <use href="#path2" id="path" stroke-dasharray="75 100" stroke-dashoffset="0"
    stroke="navy" stroke-width="4" />
  <g>
    <foreignObject width="30" height="20" transform="translate(0 -20)">
      <span id="text" xmlns="http://www.w3.org/1999/xhtml">75%</span>
    </foreignObject>  
    <animateMotion id="motion" rotate="0" begin="0s" dur="100ms"
      end="75ms" keyPoints=".75;.75" keyTimes="0;1" fill="freeze">
      <mpath href="#path2"/>
    </animateMotion>
  </g>
</svg>