Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Fade-in Gradient Body Border_stops working :( Re: Fade-in Gradient Body Border_stops working :(

#74096
doobie
Member

instead of this:

Code:
$(function(){
$(“.home”).hover(function(){
$(“.edge”).stop().fadeIn();
}, function() {
$(“.edge”).stop().fadeOut();
});
});

you could try this:

Code:
$(function(){
$(“.home”).hover(function(){
$(“.edge:not(:animated)”).fadeIn();
}, function() {
$(“.edge:not(:animated)”).fadeOut();
});
});

Or, you could try the new(ish) hoverFlow plugin http://www.2meter3.de/code/hoverFlow/

Hope this helps.