Skip to content

Instantly share code, notes, and snippets.

@stevedya
Created January 17, 2020 20:28
Show Gist options
  • Save stevedya/dafbdddb39d0ba6572c6963213ca2ffa to your computer and use it in GitHub Desktop.
Save stevedya/dafbdddb39d0ba6572c6963213ca2ffa to your computer and use it in GitHub Desktop.
function isVisible (ele) {
const { top, bottom } = ele.getBoundingClientRect();
const vHeight = (window.innerHeight || document.documentElement.clientHeight);
return (
(top > 0 || bottom > 0) &&
top < vHeight
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment