Implement AOS scroll animations for article cards

This commit is contained in:
Adolfo Reyna
2026-03-13 12:05:33 -04:00
parent 7ffd5532f9
commit 4752eec5d0
3 changed files with 18 additions and 1 deletions

View File

@@ -53,6 +53,17 @@
<?php wp_footer(); ?>
<script>
// Initialize Anime On Scroll globally
document.addEventListener('DOMContentLoaded', function () {
AOS.init({
duration: 800,
once: true,
offset: 100
});
});
</script>
</body>
</html>