Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created July 6, 2017 09:58
Show Gist options
  • Save ABooooo/17d1d356abe462bcf1720ea4e8c1f9e6 to your computer and use it in GitHub Desktop.
Save ABooooo/17d1d356abe462bcf1720ea4e8c1f9e6 to your computer and use it in GitHub Desktop.
Change CSS on scroll
var scroll_pos = 0;
$(document).scroll(function() {
scroll_pos = $(this).scrollTop();
if(scroll_pos > 210) {
$(".navbar-default").css({"background-color": "black" , "padding-top" : 0});
} else {
$(".navbar-default").css({"background-color" : "transparent" , "padding-top" : "30px"});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment