how to add a counter updating when you scroll down

2019-09-21 06:22发布

问题:

How can I add a counter updating when you scroll down a page? I like the effect that chartbeat has. What jQuery should I use to be able to achieve that?

回答1:

There is scrollTop() function. You bind event handler to 'scroll' event on document and put the value in place you want.

$(document).ready(function() {
  $(this).bind('scroll', function() {

    console.log($(this).scrollTop());
  });
});