Skip to content

Instantly share code, notes, and snippets.

@degt
Created May 24, 2018 23:58
Show Gist options
  • Save degt/c180acd8fdf791e297b7b21544a4888f to your computer and use it in GitHub Desktop.
Save degt/c180acd8fdf791e297b7b21544a4888f to your computer and use it in GitHub Desktop.
Cambia el fondo de la navegación
$(document).ready(function(){
$(window).scroll(function(evt){
var height = $(window).scrollTop();
if(height > 300) {
$('.navbar').addClass('bg-dark');
}else{
$('.navbar').removeClass('bg-dark');
}
});
$(window).scroll();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment