Learn how to use jQuery at the Blog

E3ncw « visit

  • Added 8 months ago
  • 8 Lines of Code shown
  • 0 Links of Interest
http://e3ncw.com
This is my Source Code and I don't want to show it here
View Source Code only (as overlay)
// That code snippet belongs to E3ncw - http://e3ncw.com

$(document).ready(function(){
                $(".contents em").css({top: '-170px'});
                $(".contents li").hover(function() {
                                $(this).children("em").animate({opacity: "show", top: "-160"}, "slow");
                }, function() {
                                $(this).children("em").animate({opacity: "hide", top: "-170"}, "fast");
                });
});