Last active
December 26, 2022 13:17
-
-
Save karamansky/fbb18248d2b6a08955aea45524c8ce69 to your computer and use it in GitHub Desktop.
JS: при скролле
This file contains hidden or 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
| $(window).scroll(function(){ | |
| var wt = $(window).scrollTop(); | |
| var wh = $(window).height(); | |
| var et = $('элемент').offset().top; | |
| var eh = $('элемент').outerHeight(); | |
| var dh = $(document).height(); | |
| if (wt + wh >= et || wh + wt == dh || eh + et < wh){ | |
| console.log('Элемент показан'); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment