LoginSignup
3
3

More than 5 years have passed since last update.

ページをスクロール開始のタイミングで一度だけ実行する

Posted at

ページ下部のコンテンツなどファーストビューで表示されない箇所の初期化を遅らせるため、ページがスクロールされたタイミングで一度だけjsを実行する方法。

function executeOnPageScrollOnce(f) {
  (function() {
    var f2 = function() {
      $(window).unbind('touchmove', f2);
      f();
    };
    $(window).bind('touchmove', f2);
  })();
}
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3