[data-name="RouteAnimate"] circle {
opacity: 1;
stroke-dasharray: 20;
stroke-dashoffset: 0;
}
[data-name="RouteAnimate"] path[d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"] {
opacity: 1;
stroke-dasharray: 100;
stroke-dashoffset: 0;
}
[data-name="RouteAnimate"]:hover circle {
animation: circleDrawing 0.3s ease-in-out 0.1s both;
}
[data-name="RouteAnimate"]:hover path[d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"] {
animation: routeDrawing 0.7s ease-in-out 0.5s both;
}
@keyframes circleDrawing {
0% {
opacity: 0;
stroke-dashoffset: 20;
}
100% {
opacity: 1;
stroke-dashoffset: 0;
}
}
@keyframes routeDrawing {
0% {
opacity: 0;
stroke-dashoffset: 100;
}
100% {
opacity: 1;
stroke-dashoffset: 0;
}
}