Created
February 9, 2012 11:23
-
-
Save timkeller/1779395 to your computer and use it in GitHub Desktop.
JS to make .subnav sticky
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!function ($) { | |
$(function(){ | |
// fix sub nav on scroll | |
var $win = $(window) | |
, $nav = $('.subnav') | |
, navTop = $('.subnav').length && $('.subnav').offset().top - 40 | |
, isFixed = 0 | |
processScroll() | |
$win.on('scroll', processScroll) | |
function processScroll() { | |
var i, scrollTop = $win.scrollTop() | |
if (scrollTop >= navTop && !isFixed) { | |
isFixed = 1 | |
$nav.addClass('subnav-fixed') | |
} else if (scrollTop <= navTop && isFixed) { | |
isFixed = 0 | |
$nav.removeClass('subnav-fixed') | |
} | |
} | |
}) | |
}(window.jQuery) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment