Created
May 21, 2015 18:44
-
-
Save dkruchok/5d155e7c161eb376d79b to your computer and use it in GitHub Desktop.
Фиксривованый хедер после скрола в низ
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
$(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