Skip to content

Instantly share code, notes, and snippets.

@jdefez
Created November 19, 2019 07:50
Show Gist options
  • Select an option

  • Save jdefez/9d653855c94a031f58f9641b1e4d2221 to your computer and use it in GitHub Desktop.

Select an option

Save jdefez/9d653855c94a031f58f9641b1e4d2221 to your computer and use it in GitHub Desktop.
function isElementInViewport(el) {
var 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