The SVG in the codepen above has a stroke that animates into view, but unfortunately disappears at the end of the animation.
Is there a way to make sure it stays visible once it's fully loaded?
.path {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: dash 5s linear alternate;
}
@keyframes dash {
from {
stroke-dashoffset: 1000;
}
to {
stroke-dashoffset: 0;
}
}