Skip to content

Instantly share code, notes, and snippets.

@EvanHerman
Last active May 31, 2023 13:23
Show Gist options
  • Star 31 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save EvanHerman/a1045c19e115edc18b12 to your computer and use it in GitHub Desktop.
Save EvanHerman/a1045c19e115edc18b12 to your computer and use it in GitHub Desktop.
Check when an element comes into view (jQuery)
function isOnScreen(elem) {
// if the element doesn't exist, abort
if( elem.length == 0 ) {
return;
}
var $window = jQuery(window)
var viewport_top = $window.scrollTop()
var viewport_height = $window.height()
var viewport_bottom = viewport_top + viewport_height
var $elem = jQuery(elem)
var top = $elem.offset().top
var height = $elem.height()
var bottom = top + height
return (top >= viewport_top && top < viewport_bottom) ||
(bottom > viewport_top && bottom <= viewport_bottom) ||
(height > viewport_height && top <= viewport_top && bottom >= viewport_bottom)
}
jQuery( document ).ready( function() {
window.addEventListener('scroll', function(e) {
if( isOnScreen( jQuery( '.shipping-logos' ) ) ) { /* Pass element id/class you want to check */
alert( 'The specified container is in view.' );
}
});
});
@ghonchesefidi
Copy link

Good job

@centurianii
Copy link

Replace your logic with: (bottom > viewport_top) && (top < viewport_bottom) as it covers any possible scenario with the advantage of firing events (if you add code) when element is partially visible.

@Igho-Godwin
Copy link

Nice One. Saved me a great deal of time

@H3lltronik
Copy link

Thank you! 😳😭😭😭

@ericbrockman
Copy link

Dope!

@ikunyemingor
Copy link

Awesome!!!

@Bren1209
Copy link

Champ! Thank you!

@mhsohag11
Copy link

event trigger multiple time when I am scrolling . Have any option to fire scroll event just once ?

@moe-brmg
Copy link

great work!
Although with
var top = $elem.offset().top
im getting an error!
I changed it to:
var top = $elem[0].offsetTop;
and it works perfectly now!

@WouterStulp
Copy link

Is it possible to track where the element is in the viewport?

@doroness
Copy link

doroness commented May 6, 2021

Thanks!

@athar22
Copy link

athar22 commented Jul 6, 2021

why it works for one element only?

@Chukwunonso-Iyitor
Copy link

Awesome

@nikhilcb
Copy link

nikhilcb commented May 9, 2022

cant make it work for multiple elements with same class with .each()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment