grav-theme-libretic/js/fixed-header.js
Flavio Copes ef8b17e040 Add an option to have a sticky menu
Also added blueprint configuration to turn in on from the admin.
Disabled by default.

Uses https://github.com/bigspotteddog/ScrollToFixed
2016-12-08 20:35:13 +01:00

15 lines
385 B
JavaScript

$(document).ready(function() {
var navbar = $('#navbar');
var navbarOffset = navbar.offset().top;
$(window).scroll(function(){
var scroll = $(window).scrollTop();
if (scroll >= navbarOffset) {
navbar.height(navbar.height());
navbar.addClass('fixed');
} else {
navbar.removeClass('fixed');
}
});
});