How to show div when user reach bottom of the page?

前端 未结 4 1726
南笙
南笙 2020-12-06 17:51

When user scrolls to the bottom of the page I want to show some div, with jQuery of course. And if user scrolls back to he top, div fade out. So how to calculate viewport (o

4条回答
  •  甜味超标
    2020-12-06 18:24

    You can use the following:

    $(window).scroll(function() {
        if ($(document).height() <= ($(window).height() + $(window).scrollTop())) {
            //Bottom Reached
        }
    });
    

    I use this because i have

    body {
        height:100%;
    }
    

    Hope this helps

提交回复
热议问题