AnimeJs

UI Extension

anime.js is a lightweight JavaScript animation library with a simple API for CSS properties, SVG, DOM attributes, and JavaScript objects.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #120
KEY FEATURES
CSS animations
SVG animations
Easing functions
Timeline
Staggering
Keyframes
Controls
Usage Example

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

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

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

// Register for events using Oorian's event model
component.registerForEvent(this, AnimeJsEvent.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.