“path”设置轨道每个点的坐标(x y)—>“M0 150” " L2255 70"…
<svg class='dvSvg' width="7680" height="172">
<defs>
<path id="path"
d="M0 150 L2255 70 L2355 10 L5336 10 L5436 70 L7680 140"
fill='transparent' />
<radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#03e4fe;stop-opacity:1" />
<stop offset="20%" style="stop-color:#03e4fe;stop-opacity:.9" />
<stop offset="100%" style="stop-color:#03e4fe;stop-opacity:0" />
</radialGradient>
<mask id="mask">
<circle id="circle" cx='0' cy='0' r='120' fill='url(#grad1)'>
<animateMotion dur='10'
path="M0 150 L2255 70 L2355 10 L5336 10 L5436 70 L7680 140"
rotate='auto' repeatCount='indefinite' />
</circle>
</mask>
</defs>
<use href='#path' stroke="rgba(0, 0, 0, .1)" strokeWidth='15'>
</use>
<use href='#path' stroke="#03e4fe" mask='url(#mask)' stroke-width="10">
<animate attributeName='stroke-dasharray' from='0, 0' to='0, 0' dur='10s' repeatCount='indefinite' />
</use>
</svg>