Home › Forums › JavaScript › Nice Txt Fade that i’m interested in › Re: Nice Txt Fade that i’m interested in
June 17, 2010 at 4:14 am
#78114
Member
Hi elneco,
I’m very pleased that you like my site! ;)
I use jQuery:
Code:
$(‘.footer_infoData’)
.mouseenter(function() { $(this).find(‘li, li a’).stop().animate({ color: ‘#9DC153’ }, 500); })
.mouseleave(function() { $(this).find(‘li, li a’).stop().animate({ color: ‘#071F09’ }, 500); });
.mouseenter(function() { $(this).find(‘li, li a’).stop().animate({ color: ‘#9DC153’ }, 500); })
.mouseleave(function() { $(this).find(‘li, li a’).stop().animate({ color: ‘#071F09’ }, 500); });
Works with all major Browsers.