$(window).scroll(function(e) {
var $element = $('.scrollbox'); var headerHeight = $('#head').outerHeight(); var isFixed = ($element.css('position') == 'fixed');
if ($(this).scrollTop() > headerHeight) { if(!isFixed) { console.log('scroll'); $element.addClass("scrolled"); } } if ($(this).scrollTop() < headerHeight) { if(isFixed) { console.log('dont scroll'); $element.removeClass("scrolled"); } }
});
function scrollToTop() {
$('body,html').animate({ scrollTop: 0 }, 400);
}