Add video editor timeline animator with animated playhead and scene transitions

This commit is contained in:
Matt Batchelder
2026-02-21 19:55:47 -05:00
parent 2c82b2e432
commit 2a0b949ea9
4 changed files with 344 additions and 44 deletions

View File

@@ -47,6 +47,15 @@ add_action( 'wp_enqueue_scripts', function () {
true
);
// Video editor timeline animator - animated playhead and preview crossfades
wp_enqueue_script(
'oribi-video-editor-animator',
ORIBI_URI . '/assets/js/video-editor-animator.js',
[],
ORIBI_VERSION . '.' . filemtime( ORIBI_DIR . '/assets/js/video-editor-animator.js' ),
true
);
// Localize AJAX endpoint for the contact form
wp_localize_script( 'oribi-main', 'oribiAjax', [
'url' => admin_url( 'admin-ajax.php' ),