Skip to content

Instantly share code, notes, and snippets.

@iksi
Created July 13, 2016 19:11
Show Gist options
  • Save iksi/c91a3e4e28d18ab528f4b3184759fb71 to your computer and use it in GitHub Desktop.
Save iksi/c91a3e4e28d18ab528f4b3184759fb71 to your computer and use it in GitHub Desktop.
var inViewport = function (element) {
var rect = element.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