Trigger JQuery function when passed half way down the page

前端 未结 4 1445
伪装坚强ぢ
伪装坚强ぢ 2020-12-20 04:34

Is there a way to tell if you have scrolled passed the center of the web page or in other words, when you have scrolled passed exactly half of the web page and your scrollba

4条回答
  •  失恋的感觉
    2020-12-20 05:09

    you can use the focus event if you scroll down to it (just like jQuery uses for their comments)

    jQuery('selector').focus(function() {
      jQuery('.page').show();
    });
    

提交回复
热议问题