Skip to content

Instantly share code, notes, and snippets.

@riix
Created July 24, 2012 06:06
Show Gist options
  • Save riix/3168306 to your computer and use it in GitHub Desktop.
Save riix/3168306 to your computer and use it in GitHub Desktop.
스카이스크래퍼, Sticky Menu
$(window).scroll(function() {
if ($(window).scrollTop() > 175 ) {
$('.sticky').css({'position' : 'fixed', 'top' : 0});
} else {
$('.sticky').css({'position' : 'relative', 'top' : 'none'});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment