treehouse : what would you like to learn today?
Web Design Web Development iOS Development

jquey menu

  • Hi guys,

    I looking to find the jquery module that Chris used in his footer that makes his links slide to the right. Does anyone know which one it is? Even better if anyone knows any good jquery effects for horizontal text menus that would be great.

    Thanks in advance,
    Tim
  • This is the code Chris uses for the moving links

    $(\"#moving-links a\").hover(function(){
    $(this).stop().animate({
    paddingLeft: \"10px\"
    }, 350);
    }, function(){
    $(this).stop().animate({
    paddingLeft: \"0px\"
    }, 350);
    });