Decoration 3
dvk-decoration-3 recreates the animated angular line decoration from DataV Vue3 Decoration5 as a framework-agnostic Web Component. It computes the same responsive polyline points from the host width and height, then applies the original stroke dash animation pattern.
html
<dvk-decoration-3 duration="1.2"></dvk-decoration-3>Props
| Name | Type | Default | Notes |
|---|---|---|---|
color | string | CSS variable fallback | Primary line color. |
secondary-color | string | CSS variable fallback | Secondary line color. |
colors | string | empty | Comma-separated primary and secondary line colors. |
duration | number | 1.2 | Stroke dash animation duration in seconds. |
dur | number | 1.2 | DataV-compatible alias for duration. |
animated | boolean | true | Enables stroke dash animation. |
paused | boolean | false | Pauses the stroke dash animation. |
Events
| Name | Detail |
|---|---|
dvk-ready | { tagName } |
CSS Variables
| Name | Meaning |
|---|---|
--dvk-color-primary | Primary fallback color. |
--dvk-color-secondary | Secondary fallback color. |
Parts
| Part | Description |
|---|---|
graphic | Internal SVG. |
line | Shared part for both polylines. |
main-line | Main angular polyline. |
sub-line | Secondary bottom polyline. |