Guest User

Untitled

a guest
Jul 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var isInViewport = function (elem) {
  2. var bounding = elem.getBoundingClientRect();
  3. return (
  4. bounding.top >= 0 &&
  5. bounding.left >= 0 &&
  6. bounding.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
  7. bounding.right <= (window.innerWidth || document.documentElement.clientWidth)
  8. );
  9. };
Add Comment
Please, Sign In to add comment