Skip to content

Instantly share code, notes, and snippets.

@mapix
Created August 15, 2013 06:11
Show Gist options
  • Select an option

  • Save mapix/6238638 to your computer and use it in GitHub Desktop.

Select an option

Save mapix/6238638 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$(".navbar.navbar-inverse.navbar-fixed-top").fadeTo("slow", 0.05);
$(".navbar.navbar-inverse.navbar-fixed-top").hover(function(){
$(this).fadeTo("fast", 1.0);
},function(){
$(this).fadeTo("slow", 0.05);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment