navbar.js
411 Bytes
$(function() {
'use strict';
// Do our DOM lookups beforehand
var nav_container = $(".header");
var nav = $(".nav");
nav_container.waypoint({
handler: function(event, direction) {
nav.toggleClass('sticky', direction=='down');
if (direction == 'down') nav_container.css({ 'height':nav.outerHeight() });
else nav_container.css({ 'height':'auto' });
},
offset: 62
});
});