1
任何人都可以發表如何動畫svg折線或路徑的示例嗎?SVG Animate polilines轉換
我想動畫從藍色到灰色線的過渡。理想情況下,我正在尋找一種解決方案,可以在不知道其點的座標數的情況下使用任何灰線。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div style="height: 200px; width: 500px; border: 1px solid #ccc;">
<svg height="200" width="500" xmlns="http://www.w3.org/2000/svg">
<polyline points="20,20 40,25 60,40 80,120 120,140 200,180"
style="fill: none; stroke: gray; stroke-width: 3" />
<polyline points="20,20 40,20 60,20 80,20 120,20 200,20"
style="fill: none; stroke: blue; stroke-width: 3" />
</svg>
</div>
</body>
</html>