octavian-filipciuc
7/24/2014 - 2:30 PM

On Scrolling

On Scrolling

function scrolled() {
     jQuery('body').addClass('scrolling');
     jQuery(this).off('scroll')[0].setTimeout(function() {
        jQuery('body').removeClass('scrolling');
        jQuery(this).on('scroll', scrolled);
    }, 500)
}
jQuery(window).on('scroll', scrolled);