简体   繁体   中英

during scroll call a function only once

I have a counter on a page. When I scroll to it I need start it only once. but now it starts twice during next scroll. Thank's.

var quit = false;
$(window).scroll(function() {
    // ...
    something();

    function something() {
      if (quit == true) {
        return;
      }
      quit = true;
      setTimeout(function() {
        $(begin).html(2002);
      }, 500); // this function must be call only once
    }
  }
}
$(document).on('scroll', function() {
    something();
        $(document).off('scroll');
});

this solution helped me https://github.com/HubSpot/odometer/issues/35

my second mistake was creating "new odometer" object

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM