chrisjpatty / flume

Extract logic from your apps with a user-friendly node editor powered by React.
https://flume.dev
MIT License
1.43k stars 148 forks source link

Animated connections #235

Open CRY-D opened 9 months ago

CRY-D commented 9 months ago

If you want to add a simple animated connection similar to the one shown above, you can use the following CSS snippet

Screenshot_20240102_145422

.Connection_svg__-fKLY {
      stroke-dasharray:5;
      animation: dashdraw .5s linear infinite;
}
@keyframes dashdraw {
    0% { stroke-dashoffset: 10   }
 }