Forums

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

Home Forums CSS jquey menu

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23546
    k21224
    Member

    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

    #50806
    chazzwick
    Member

    This is the code Chris uses for the moving links

    Code:
    $(“#moving-links a”).hover(function(){
    $(this).stop().animate({
    paddingLeft: “10px”
    }, 350);
    }, function(){
    $(this).stop().animate({
    paddingLeft: “0px”
    }, 350);
    });
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.