Skip to content

Instantly share code, notes, and snippets.

@jgoslow
Created August 13, 2022 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgoslow/08e540f8f14b9a90a49135c182ea6d13 to your computer and use it in GitHub Desktop.
Save jgoslow/08e540f8f14b9a90a49135c182ea6d13 to your computer and use it in GitHub Desktop.
Element In View JS Helper Functions
/**
* Check if Element is in View
*/
function elementIsVisible(el, offset) {
const rect = el.getBoundingClientRect();
return (
rect.top < window.innerHeight && rect.bottom - offset >= 0
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment