feat: Add staggered entrance and icon pop-in animation for feature section cards

This commit is contained in:
Matt Batchelder
2026-03-22 01:40:10 -04:00
parent 8a2cd6ef41
commit b14e137933
3 changed files with 87 additions and 2 deletions

View File

@@ -65,6 +65,15 @@ add_action( 'wp_enqueue_scripts', function () {
true
);
// Feature section card animator - staggered entrance and icon pop-in
wp_enqueue_script(
'oribi-demo-animator',
ORIBI_URI . '/assets/js/demo-animator.js',
[],
ORIBI_VERSION . '.' . filemtime( ORIBI_DIR . '/assets/js/demo-animator.js' ),
true
);
// Localize AJAX endpoint for the contact form
wp_localize_script( 'oribi-main', 'oribiAjax', [
'url' => admin_url( 'admin-ajax.php' ),