Skip to content

Instantly share code, notes, and snippets.

@joaomosantos
Created May 19, 2017 19:49
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 joaomosantos/c6139f098167433ce59b779f5c9c8016 to your computer and use it in GitHub Desktop.
Save joaomosantos/c6139f098167433ce59b779f5c9c8016 to your computer and use it in GitHub Desktop.
Elemento visível ao window
function isOnScreen(el) {
var win = $(window);
var winTop = win.scrollTop();
var winBottom = winTop + win.height();
var elTop = el.offset().top;
var elBottom = elTop + el.height();
return winTop <= elBottom && winBottom >= elTop;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment