Vivus

UI Extension

Vivus is a JavaScript library for animating SVGs by drawing their paths progressively with multiple animation types.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #167
KEY FEATURES
SVG path animation
Delayed animation
Sync animation
One-by-one
Scenario-based
No dependencies
Callback support
Usage Example

Here's how you'll use Vivus with Oorian once the extension is available:

Java
// Create and configure Vivus component
Vivus component = new Vivus();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, VivusEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.