I have this SVG logo with stroke and fill animation, but i need to trigger the fill after the 4th second so it doesn't appear with the first animation.
<defs>
<style>
.st0 {
stroke-dasharray: 800;
stroke-dashoffset: 0;
-webkit-animation: dash 4s linear forwards;
-moz-animation: dash 4s linear forwards;
-o-animation: dash 4s linear forwards;
animation: dash 4s linear forwards;
animation: fill .8s eas;
-webkit-animation: fill .8s eas;
-moz-animation: fill .8s eas;
-o-animation: fill .8 eas;
}
@-webkit-keyframes dash {
from {
stroke-dashoffset: 800;
}
to {
stroke-dashoffset: 0;
fill: #000;
}
}
</style>
</defs>