Back
Stroke Draw Animation
Animated stroke drawing effect
<svg viewBox="0 0 600 120">
<rect width="100%" height="100%" fill="#ffffff"/>
<text x="50%" y="55%" text-anchor="middle" font-size="44" fill="none" stroke="#2563eb" stroke-width="2" stroke-dasharray="800" stroke-dashoffset="800">
Draw
<animate attributeName="stroke-dashoffset" from="800" to="0" dur="4s" repeatCount="indefinite"/>
</text>
</svg>