Skip to content

Instantly share code, notes, and snippets.

@dkruchok
Created May 21, 2015 18:44
Show Gist options
  • Save dkruchok/5d155e7c161eb376d79b to your computer and use it in GitHub Desktop.
Save dkruchok/5d155e7c161eb376d79b to your computer and use it in GitHub Desktop.
Фиксривованый хедер после скрола в низ
$(window).scroll(function() {
if ($(document).scrollTop() > 130) {
$("body").addClass("top_menu_small");
} else {
$("body").removeClass("top_menu_small");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment