Created
June 30, 2018 15:57
-
-
Save agneym/7ff4467c8c6ab17e438111d179b3ab96 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const observer = new IntersectionObserver(callback); | |
const target = document.querySelector('#target'); | |
observer.observe(target); | |
function callback(entries) { | |
// Do action here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment