Add industry mockup animator script for solutions page

- Enqueued new script `industry-animator.js` for animated device mockups.
- Implemented animation logic for various industries including hospitality, retail, corporate, education, outdoor, and live data displays.
- Utilized IntersectionObserver for performance optimization by pausing animations when off-screen.
This commit is contained in:
Matt Batchelder
2026-02-21 13:59:57 -05:00
parent 82a2dacbef
commit 2edbf9732b
5 changed files with 983 additions and 6 deletions

View File

@@ -38,6 +38,15 @@ add_action( 'wp_enqueue_scripts', function () {
true
);
// Industry mockup animator - animated device mockups for solutions page
wp_enqueue_script(
'oribi-industry-animator',
ORIBI_URI . '/assets/js/industry-animator.js',
[],
ORIBI_VERSION . '.' . filemtime( ORIBI_DIR . '/assets/js/industry-animator.js' ),
true
);
// Localize AJAX endpoint for the contact form
wp_localize_script( 'oribi-main', 'oribiAjax', [
'url' => admin_url( 'admin-ajax.php' ),