Guest User

Untitled

a guest
Jul 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. somebigcontents
  2.  
  3. <div data-scrollpixel="testimonal">
  4. //some html
  5. </div>
  6.  
  7. some other contents
  8.  
  9. <div data-scrollpixel="footer">
  10. //some html
  11. </div>
  12.  
  13. $(window).scroll(function() {
  14. var hT = $('[data-scrollpixel]').offset().top,
  15. hH = $('[data-scrollpixel]').outerHeight(),
  16. wH = $(window).height(),
  17. wS = $(this).scrollTop();
  18. if (wS > (hT+hH-wH)){
  19. $(this).data("scrollpixel");
  20. }
  21. });
Add Comment
Please, Sign In to add comment