A Vue component that creates an animated SVG line connecting two elements with a gradient effect.
Prop | Type | Default | Description |
---|---|---|---|
reverse | Boolean | false | Reverses the direction of the gradient animation. |
container | HTMLElement | null | The container element for the SVG (required). |
from | HTMLElement | null | The starting element for the line (required). |
to | HTMLElement | null | The ending element for the line (required). |
curvature | Number | 0 | The curvature of the line. |
startXOffset | Number | 0 | X-axis offset for the starting point. |
startYOffset | Number | 0 | Y-axis offset for the starting point. |
endXOffset | Number | 0 | X-axis offset for the ending point. |
endYOffset | Number | 0 | Y-axis offset for the ending point. |
pathWidth | Number | 2 | Width of the path stroke. |
pathOpacity | Number | 0.2 | Opacity of the base path. |
gradientStartColor | String | "#6344F5" | Start color of the gradient. |
gradientStopColor | String | "#18CCFC" | End color of the gradient. |
pathColor | String | "gray" | Color of the base path. |
delay | Number | 0 | Delay before the animation starts (in seconds). |
duration | Number | Math.random() * 3 + 4 | Duration of the animation (in seconds). |
You can customize the AnimatedBeam component by:
curvature
prop to change the curve of the line.startXOffset
, startYOffset
, endXOffset
, and endYOffset
props to fine-tune the connection points.gradientStartColor
and gradientStopColor
props to alter the gradient colors.pathWidth
and pathOpacity
to change the appearance of the base path.delay
and duration
props to control the timing of the animation.