svg文字 strokeアニメーション

svg {
  border: 1px solid gray;
}

.text-deco {
  font-size: 2em;
  fill: none;
  font-weight: bold;
  stroke: red;
  text-anchor: middle;
  animation: my-text 3s ease-in;
  stroke-dasharray: 500;
}

@keyframes my-text {
  0% {
    stroke-dashoffset: 500;
  }
  50% {
  }
  100% {
    stroke-dashoffset: 0;
  }
}
<svg version="1.1"	xmlns="http://www.w3.org/2000/svg" width="160" height="160">
<text x="80" y="80" class="text-deco">いろはに</text>
<circle cx="80" cy="80" r="80" fill="orange" class="text-deco" />
</svg>