Skip to content

Instantly share code, notes, and snippets.

@lionhylra
Created September 26, 2013 06:14
Show Gist options
  • Save lionhylra/6710446 to your computer and use it in GitHub Desktop.
Save lionhylra/6710446 to your computer and use it in GitHub Desktop.
透明度opacity
$('#nav nav').css("opacity", 0.8 );
$("#nav nav").on({
mouseenter: function () {
//$(this).addClass("mouseenter");
$(this).stop().animate({ opacity: 1 }, 200);
},
mouseleave: function () {
$(this).stop().animate({opacity: 0.8}, 500);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment