Skip to content

Instantly share code, notes, and snippets.

@Drew-Killeen
Created January 15, 2024 15:34
Show Gist options
  • Save Drew-Killeen/013c5a07b7402317ce9fd20b990749ba to your computer and use it in GitHub Desktop.
Save Drew-Killeen/013c5a07b7402317ce9fd20b990749ba to your computer and use it in GitHub Desktop.
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add('show');
}
});
});
const hiddenElements = document.querySelectorAll('.hide-animate');
hiddenElements.forEach((element) => {
observer.observe(element);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment