Created
November 23, 2015 15:46
-
-
Save tyxla/e43f2ffdb41121ffcc2b to your computer and use it in GitHub Desktop.
isElementInViewport
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isElementInViewport(el) { | |
if ( document.documentElement.clientWidth <= 767 && document.documentElement.clientHeight < document.documentElement.clientWidth ) { | |
return $(el).is(':visible'); | |
} | |
if (typeof jQuery === "function" && el instanceof jQuery) { | |
el = el[0]; | |
} | |
var rect = el.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