Reputation: 17
How to a create a fadein and fadeout effect on this http://jsfiddle.net/b3FgY/
Upvotes: 0
Views: 225
Reputation: 87073
$("li", "#list-gallery").hover(
function() {
$(this).find("h2").fadeToggle();
});
Upvotes: 0
Reputation: 12190
$("li", "#list-gallery").hover(
function() {
$(this).find("h2").fadeIn();
},
function() {
$(this).find("h2").fadeOut();
}
);
Upvotes: 1
Reputation: 21449
Just use fadeIn and FadeOut instead of show and hide.
Here you go:
Upvotes: 0