Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
// START ScrollBox | // START ScrollBox | ||
Revision as of 11:18, 13 October 2016
// START ScrollBox
$(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);
}
// END ScrollBox