stroke-dashoffset: 0;
.c-dashed-line__path {
animation: c-dashed-line-path 3s ease-in-out ;
fill: none;
stroke: #fff;
stroke-dasharray: 241; /* this is the entire length of the line */
stroke-dashoffset: 0; /* this is the entire length of the line */
stroke-width: 2;
}
@keyframes c-dashed-line-path {
0% {
stroke-dashoffset:241;
}
100% {
stroke-dashoffset:0;
}
}