let headerHeight = $('.all-header').outerHeight();
let lastScrollTop = 0;
$(window).scroll(function() {
console.log('11');
let st = $(this).scrollTop();
if (st > lastScrollTop){
// код для прокрутки вниз
$('.all-header').css('top', '-' + headerHeight + 'px');
} else {
// код для прокрутки вверх
$('.all-header').css('top', '0px');
}
lastScrollTop = st;
});