BLOG SVGアニメーションといえばCSSのみでもいけますよね? 例えばこんな感じで( -`д-´)キリッ <style> #cloud { stroke: salmon; stroke-dasharray: 2000; stroke-dashoffset: 2000; stroke-width: 2; -webkit-animation: cloud_line 10s linear 0s infinite; animation: cloud_line 10s linear 0s infinite; } @keyframes cloud_line { 0% { stroke-dashoffset: 2000; } 100% { stroke-dashoffset: 0; } } @-webkit-keyframes cloud_line { 0% { stroke-dashoffset: