12 lines
161 B
SCSS
Executable File
12 lines
161 B
SCSS
Executable File
.path {
|
|
stroke-dasharray: 3000;
|
|
stroke-dashoffset: 3000;
|
|
animation: dash 0.5s linear forwards;
|
|
}
|
|
|
|
@keyframes dash {
|
|
to {
|
|
stroke-dashoffset: 0;
|
|
}
|
|
}
|