Роб В. предложил мне проверить еще один пост здесь, в стеке, который по сути был похож на мой исходный. Читая это, я нашел ссылку на сайт:
http://james.padolsey.com/javascript/special-scroll-events-for-jquery/
На самом деле это помогло мне очень хорошо решить мою проблему после небольшой настройки для моих собственных нужд, но в целом помогло избавиться от множества болтовни и сэкономило мне около 4 часов, чтобы разобраться в ней самостоятельно.
Увидев, что этот пост, кажется, имеет некоторые достоинства, я решил, что вернусь и предоставлю код, изначально найденный по упомянутой ссылке, на тот случай, если автор когда-нибудь решит пойти в другом направлении с сайтом и в конечном итоге уберет ссылку.
(function(){
var special = jQuery.event.special,
uid1 = 'D' + (+new Date()),
uid2 = 'D' + (+new Date() + 1);
special.scrollstart = {
setup: function() {
var timer,
handler = function(evt) {
var _self = this,
_args = arguments;
if (timer) {
clearTimeout(timer);
} else {
evt.type = 'scrollstart';
jQuery.event.handle.apply(_self, _args);
}
timer = setTimeout( function(){
timer = null;
}, special.scrollstop.latency);
};
jQuery(this).bind('scroll', handler).data(uid1, handler);
},
teardown: function(){
jQuery(this).unbind( 'scroll', jQuery(this).data(uid1) );
}
};
special.scrollstop = {
latency: 300,
setup: function() {
var timer,
handler = function(evt) {
var _self = this,
_args = arguments;
if (timer) {
clearTimeout(timer);
}
timer = setTimeout( function(){
timer = null;
evt.type = 'scrollstop';
jQuery.event.handle.apply(_self, _args);
}, special.scrollstop.latency);
};
jQuery(this).bind('scroll', handler).data(uid2, handler);
},
teardown: function() {
jQuery(this).unbind( 'scroll', jQuery(this).data(uid2) );
}
};
})();