jQuery alert after 100 pixels scrolled

后端 未结 3 713
长发绾君心
长发绾君心 2020-12-15 06:35

Is it possible to fire an alert after a user scrolls 100 pixels.

Here\'s what I have so far but I know I\'m missing something;

$(window).scroll(func         


        
3条回答
  •  不知归路
    2020-12-15 07:12

    Try this:

    $(document).scrollTop() >= 100) {
        // ...
    }
    

    scrollTop() returns an integer. This version will evaluate to true once you have scrolled past 100px, which might be more appropriate.

提交回复
热议问题