animflow
Version:
A lightweight, high-performance animation library for creating smooth, responsive web animations
20 lines (18 loc) • 436 B
CSS
/* SVG Animations */
path[data-anim*="draw-path"],
line[data-anim*="draw-path"],
polyline[data-anim*="draw-path"],
polygon[data-anim*="draw-path"] {
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: none; /* Reset any existing animations */
}
/* Animation for draw-path */
@keyframes drawPath {
to {
stroke-dashoffset: 0;
}
}