Skip to content

Instantly share code, notes, and snippets.

@d3lm
Created May 25, 2016 07:17
Show Gist options
  • Save d3lm/9c143216f68b2fe6d5dcc99e4cb52946 to your computer and use it in GitHub Desktop.
Save d3lm/9c143216f68b2fe6d5dcc99e4cb52946 to your computer and use it in GitHub Desktop.
function isElementInViewport(el) {
let rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment