试图触发 setTimeout(function) 到 850 的滚动位置,但需要一些帮助....
$(document).ready(function() {
var below_850 = false;
$(document).scroll(function() {
var top = $(document).scrollTop();
below_850 = (top > 850);
}
setTimeout(function(){
$('.odometer').html('652348');
}, 1000);
}
});