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);