logo/src/css/animation.css

12 lines
156 B
CSS

.m {
stroke-dasharray: 2000;
stroke-dashoffset: 2000;
animation: draw 1s linear forwards;
}
@keyframes draw {
to {
stroke-dashoffset: 0;
}
}