Я пытаюсь исправить «Навигацию» сразу после «Заголовка» плавно, на расстоянии 50 пикселей сверху.
ДЕМО-ССЫЛКА
jQuery:
$(document).ready(function() {
$(window).bind('scroll', function() {
var navHeight = $( window ).height() - 80;
if ($(window).scrollTop() > navHeight) {
$('.navigation').addClass('fixed');
}
else {
$('.navigation').removeClass('fixed');
}
});
});
Подробнее здесь: https://stackoverflow.com/questions/771 ... ter-header