$(\"ul\").css(\"opacity\", \"0.1\").hover(function(){ $(this).fadeTo(400, 1);}, function(){ $(this).fadeTo(400, 0.1);});
$('.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); });
I use jQuery: $('.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); });Works with all major Browsers.
$('.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); });
I found this cool txt fade/ color fade thing on a site and i am very interested in learning to recreate.
the site is:
http://knauth.cc/
(txt fade in footer at the bottom)
i tried checking the code out but couldn't find what i needed. Maybe someone here knows how this effect works?
Thanks all who look into this.
-jaime
$(\"ul\").css(\"opacity\", \"0.1\").hover(function(){$(this).fadeTo(400, 1);
}, function(){
$(this).fadeTo(400, 0.1);
});
I'm very pleased that you like my site! ;)
I use jQuery:
Works with all major Browsers.
You will have to include some kind of jQuery color transition plugin, because stand alone jQuery can't animate one colour to another by itself.