Animated Drop Down Menu with jQuery

preview

View the effect

Drop down menus are a really convient way to fit a large menu into a really small initial space. For a long time people have just used a form element for standard drop downs, but with minimal effort you can create a much slicker effect using jQuery and CSS.


Step 1: The HTML

Before we can do anything, we need to link our CSS file and our jQuery file in the header our of HTML document:

<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jsfiles/jquery.js"></script>

These two files will contain our styles and the javascript effect library (duh), but before we can style or animate anything, we need to build the list itself. We are going to use a simple unordered list:

<ul class="menu_body">
  <li><a href="#">About Us</a></li>
  <li><a href="#">Portfolio</a></li>

  <li><a href="#">Clients</a></li>
  <li><a href="#">Blog</a></li>
  <li><a href="#">Support Forums</a></li>

  <li><a href="#">Gallery</a></li>
  <li><a href="#">Contact Us</a></li>
</ul>

What we have here is as simple as it looks. We have an unordered list with the class of "menu_body". Inside we have multiple list items, each containing a navigation link. Next we need to add an image above the list. This image will serve as the list’s heading an all that is visible when the drop down is collapsed. It doesn’t have to be an image, this would work exactly the same with text to launch and collapse the menu, I just wanted something visual. If you want to use mine, you can find it here. With the image added we have our complete HTML:

<img src="images/navigate.png" width="184" height="32" class="menu_head" />

  <ul class="menu_body">
  <li><a href="#">About Us</a></li>
  <li><a href="#">Portfolio</a></li>

  <li><a href="#">Clients</a></li>
  <li><a href="#">Blog</a></li>
  <li><a href="#">Support Forums</a></li>

  <li><a href="#">Gallery</a></li>
  <li><a href="#">Contact Us</a></li>
</ul>

We need to give our image a class name, so we have something to reference by when we start our jQuery. I used the class "menu_head". Here is what we have so far, a completely unstyled list with an image on top:

Unstyled List


Step 2: The CSS

Next we need to give our list some style. First, lets do our top level styling:

body{background:#534741;font-family:Arial, Helvetica, sans-serif; font-size:12px;}
ul, li{margin:0; padding:0; list-style:none;}

Nothing too comples here, just setting a background color, font, and font size. Also, we are telling the list to have no padding, margin, or bullets. Now our list is just a heading and a neat column of links:

Some Style

Now we can style the heading image and each list item. Here is the CSS:

.menu_head{border:1px solid #998675;}
.menu_body {width:184px;border-right:1px solid #998675;border-bottom:1px solid #998675;border-left:1px solid #998675;}
.menu_body li{background:#493e3b;}
.menu_body li a{color:#FFFFFF; text-decoration:none; padding:10px; display:block;}

Here’s what we just did. We added a light tan border around the image "menu_head". On the unordered list "menu_body" we set a width (the same width as our image), and we added a light tan border to every side but the top (there will already be a line there since we have one around our image). We set a background color for each list item and we styled each link. Every link is now white, not underlines, has a nice amount of padding, and is set to a block display (this will make the whole box around the link clickable, not just the text itself).

Here is what our list should look now:

More Style


Step 3: The jQuery

Our first step will be to add the jQuery to tell the list items to alternate their background colors. In the head of your HTML document, add:

<script type="text/javascript">
$(document).ready(function () {$("ul.menu_body li:even").addClass("alt");
});

</script>

This is a basic jQuery function. When the document is ready, the function will add a special class of "alt" to each alternating row of our list. With the new classes applied, we can add a new CSS rule for the class "alt"

.menu_body li.alt{background:#362f2d;}

Now the rows will alternate between lighter and darker shades of brown, like this:

Row colors

Now the the list has the overall look that we want, we can go ahead and completely hide it with CSS. In the CSS rule for "menu_body" add the property "display:none;" like this:

.menu_body {display:none; width:184px;border-right:1px solid #998675;border-bottom:1px solid #998675;border-left:1px solid #998675;}

If you look at the page now, all you should be able to see if the heading image. For now, the menu has seemingly dissappeared. Time to bring it back with jQuery:

<script type="text/javascript">
$(document).ready(function () {
$("ul.menu_body li:even").addClass("alt");

$('img.menu_head').click(function () {

$('ul.menu_body').slideToggle('medium');

});
});
</script>

We added a new function that runs when the image with the class of "menu_head" is clicked. A click is just one of the events jQuery recognizes. You could also have the function run on mouseover, a key press, or numerous other things. When a click event is registered, jQuery will use the effect slideToggle on the unordered list with the class of "menu_body". jQuery has a large list of effects and various effect plugins, there is really no limit on how you can animate the list sliding open and closed. slideToggle allows you to set a speed, I chose medium, but you can also use "fast", "slow", or define a number in miliseconds.

The menu should now slide open and closed when you click on the heading image:

Animation

You could stop now and have a pretty decent animated menu, but with jQuery its very easy to add simple hover effects. First, we need to add some to our CSS:

.menu_body li a:hover{padding:15px 10px; font-weight:bold;}

This will do two things. When one of our links is hovered over, the padding on the top and bottom will be expanded to 15px (making each rolled over area taller and allowing the shift) and chaning the font weight to bold.

Next we can add some jQuery animation:

<script type="text/javascript">
$(document).ready(function () {
$("ul.menu_body li:even").addClass("alt");

$('img.menu_head').click(function () {
$('ul.menu_body').slideToggle('medium');
});

$('ul.menu_body li a').mouseover(function () {
$(this).animate({ fontSize: "14px", paddingLeft: "20px" }, 50 );
});


});
</script>

We’ve now added a mouseover function, one that runs anytime you mouseover any list item’s link within our unordered list. The function is set to run on "this" which just means the element will run the function on itself. We are using the jQuery effect animate, which allows for many different parameters, along with a duration of time to run them in. We’ve told the function to change the font size to 14px, change the padding-left to 20px, and to do both things in 50 miliseconds.

At this point, the menu can expand and collapse, and the mouseover effect on the links should be working. Now we just need to tell it to reverse the effect when we mouseoff a link. If we don’t tell it to reset each animation, the links will "stick" in their new font size and position. We, of course, want each link to snap back to its original position. We can easily do this like so:

<script type="text/javascript">

$(document).ready(function () {
$("ul.menu_body li:even").addClass("alt");
$('img.menu_head').click(function () {
$('ul.menu_body').slideToggle('medium');
});

$('ul.menu_body li a').mouseover(function () {
$(this).animate({ fontSize: "14px", paddingLeft: "20px" }, 50 );

});

$('ul.menu_body li a').mouseout.(function () {
$(this).animate({ fontSize: "12px", paddingLeft: "10px" }, 50 );
});
});
</script>

This is our last bit of jQuery. It is a function that runs whenever you mouseout of a list item’s link. It will reset the font to the original size (12px), change the padding-left back (to 10px). It will do both things in 50 miliseconds, the same speed as the first half of the animation.

Your menu should now be fully functional. It should be able to click open and close (in a sliding animation) and each link should animate when touched with the mouse (expanding the height, text size, and left-margin). I purposely tried to keep this menu light on images, but this simple effect is really easy to dress up some. For example, each link’s hover state could have an image background. Each image could be specific to each section for a really polished, intuituve menu and it would all fit into a small rectangle when not in use.

You can see the finished menu here.

Download the source files


Introducing QuikTab, a premium CMS style WordPress theme

QuikTab is a standards-compliant, one-page theme powered by WordPress and jQuery. You can buy it at ThemeForest for $12.

63 Comments

  1. Posted October 10, 2008 at 1:52 am | Permalink

    Really cool design…

    defiantly going to use this somewhere.

    http://www.leafydesignz.co.za

  2. Posted October 27, 2008 at 5:27 pm | Permalink

    hi clark

    great site you did. now you’re employed, my question is: aside your work do you have some time free for coding or other projects?

    i’m from switzerland, send you greetings and hope to hear from you.

    marc

  3. jane
    Posted October 31, 2008 at 9:00 am | Permalink

    this is great, but how would you use this as a horizontal menu? it breaks the menu items when you click on them, so the entire top level menu items move down below and open up.

  4. Posted November 1, 2008 at 9:39 pm | Permalink

    Thank you for your website :)
    I made on photoshop backgrounds for myspace or youtube and ect..
    my backgrounds:http://tinyurl.com/6r7cav
    all the best and thank you again!

  5. Posted December 18, 2008 at 5:27 am | Permalink

    Very nice menu indeed. It reminds me the top “Envato Networks” menu on Nettuts, PSDtuts and so on.

    I don’t really like the effects as you rollover a link though. I think that could be improved.

    Keep up the good work.

  6. steve
    Posted January 8, 2009 at 8:27 pm | Permalink

    hi, how can add more buttons and drop menu?? I cant :( why just one? please help!!! thanks

  7. Rodney
    Posted January 12, 2009 at 8:05 am | Permalink

    Thanks for the wonderful tut. Deffinately going to use this one. I was wondering is it possible if you could try and explain how this was done in jquerry?

    http://www.filamentgroup.com/lab/
    jquery_ipod_style_drilldown_menu/

  8. Casey
    Posted January 29, 2009 at 8:16 am | Permalink

    This is great! How would you modify it to use mouseover and mouseout to toggle the menu’s visibility?

  9. Posted January 29, 2009 at 8:56 am | Permalink

    i’m having problem viewing this page. pls fix it. screenshot attached as my website

  10. Nick
    Posted February 13, 2009 at 3:06 pm | Permalink

    I wonder are there a code that if person unmouseover the menu. so it forces menu to close it istead of have to click it to close it?? im curious.

  11. awake
    Posted February 21, 2009 at 3:50 pm | Permalink

    i’ve not viewed the code yet, but I loved the demo.

    i was looking for somethign similar to what envato (netut guys) had.

    thanks a bunch

  12. Posted February 23, 2009 at 11:55 am | Permalink

    Hi, i have one “problem”. I cant make this to go over objects, images or flash, it’s moves all the content down. It is posible TO FLOAT OVER OBJECTS?
    Thanks in advance.

  13. Posted February 23, 2009 at 2:28 pm | Permalink

    @Fede – if you wrap the whole thing in a div and set the div to float (left or right) then when it drops down it will float over your other content.

    The issue I’m having is I can’t get the javascript functions to work. Not even applying the “alt” class works. I just can’t seem to figure out what’s wrong. I did change the class names of my image and unordered list, but I made sure to change the class names in my javascript as well. Any ideas?

  14. Posted February 24, 2009 at 9:59 am | Permalink

    Ok. I finally got it to work. So I have a few constructive criticisms to offer those in the future.

    First, make sure you use double quotes when referencing your class names in the javascript. If you use single quotes the effect will not work.

    Also, make sure you use “normal” instead of “medium” for the slideToggle speed.

    You can learn more about slideToggle over at jQuery’s website:
    http://docs.jquery.com/Effects/slideToggle

  15. daredanger
    Posted March 3, 2009 at 1:35 am | Permalink

    Cannot find navigate.png file in the link that you have given in your post. You have given this link http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/images/navigate.png. When I visited this page I got Not Found error page. Please update us with another working link or make this link work.

  16. Binno
    Posted March 3, 2009 at 2:01 am | Permalink

    How can i correct program mouseover and mouseout?

    $(’img.menu_head’).mouseover(function () {
    $(’ul.menu_body’).slideToggle(’medium’);
    });

    $(’img.menu_head’).mouseout(function () {
    $(’ul.menu_body’).slideToggle(’medium’);
    });

    When mouseout img.menu.head with mouse to scroll down, then must show on ul.menu.body so long as the mouse leave out ul.menu.body.

    Sorry, i write not good english. I come from Germany.

    Thanking you in advance for this problem solution!

  17. carl
    Posted March 10, 2009 at 1:12 am | Permalink

    I have experimented with using this in a website(not online). It works great on the mac and in Firefox on the PC but…in IE7 the menu items/text jumps out in HUGE font sizes for a split-second before returning to to regular size.
    A jQuery thing? or perhaps confict with something else in my stylesheet?
    Any leads would be appreciated.
    Thanks.

  18. Posted March 12, 2009 at 1:25 am | Permalink

    Hi Clark,

    I love your Quick Tab theme and am thinking about purchasing it within the next couple of days. Would it be possible for me to implement the animated drop down on this them? A couple of the tabs would need to have a submenus. Thanks man.

  19. awake
    Posted March 19, 2009 at 11:54 am | Permalink

    I think I like this version, but there another version @ site below

    - http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/

  20. Posted May 13, 2009 at 1:10 pm | Permalink

    I really like this menu but like some others I wanted it to function on mouseover and out.
    I am a beginner in javascript and jquery but by looking at another tutorial in jquery I have got it to work.

    $(document).ready(function() {
    $(”ul.menu_body li:even”).addClass(”alt”);
    $(’.container’).hover(function() {
    $(’ul.menu_body’).slideToggle(’medium’);
    }, function() {
    $(’ul.menu_body’).slideToggle(’medium’);
    });
    $(’ul.menu_body li a’).mouseover(function () {
    $(this).animate({ fontSize: “14px”, paddingLeft: “20px” }, 50 );
    });
    $(’ul.menu_body li a’).mouseout(function () {
    $(this).animate({ fontSize: “12px”, paddingLeft: “10px” }, 50 );
    });
    });

    Seems to work in IE7, Firefox and Safari. If there are problems with this script please let me know.

  21. Posted May 13, 2009 at 1:13 pm | Permalink

    You will also need to add to the CSS:

    .container {
    width: 184px;
    }

  22. Posted May 19, 2009 at 12:10 pm | Permalink

    Just FYI: Your layout extends beyond the left margin limit using IE7 and IE8. Just thought you’d like to know.
    Screenshot:
    http://www.nwcic.com/clarklab/clarklab-shot.png

    Best of success,
    JL

  23. Posted May 22, 2009 at 12:21 pm | Permalink

    Very nice.

  24. Posted June 11, 2009 at 7:54 pm | Permalink

    Hi Clark,

    Got the menu working a little too well!

    Is there a way to create a vertical menu that toggles only when you click one item?

    You can see where I’m at here:
    http://chelseajewish.org

    I’m guessing either indiv. classes such as menu_body1, menu_body2 but I haven’t had much experience with jQuery and I’m not sure how to tweak this code.

    Thanks!
    Jenn

  25. Dennis G
    Posted June 12, 2009 at 8:46 am | Permalink

    Hi there. I really like this script (http://clarklab.net/blog/articles/dropdown/example.html). The one thing is that I was trying to modify it such that it will open onmouseover and close onmouseout of anywhere on the menu. Did you have a version like this? Let me know – thanks in advance!

    Dennis

  26. Posted June 15, 2009 at 8:02 pm | Permalink

    Hi Again!

    I found the answer via the Jquery forum to the “all submenus opening at once” issue.

    $(’img.menu_head’).click(function()){
    $(this).next(’ul.menu_body’).slideToggle(’medium’);
    });

    Now it works.

  27. Posted June 20, 2009 at 9:02 am | Permalink

    Hi!
    One more thing. The dropdown is not working in Safari and IE (6-8) Has anyone experimented with creating conditional CSS to handle this? Has anyone else had browser compatibility issues?

    Thanks

  28. Franklyn
    Posted June 27, 2009 at 10:24 pm | Permalink

    The preview is blacklisted by google.

  29. AlexQ
    Posted July 27, 2009 at 8:18 pm | Permalink

    Thanks for the tut, its very impressive.
    But i am wondering since this example works with 1 menu , is there a tut with it working with say 4 main horiz menu items floated with the ability to close the previous menu item on mouse out?

  30. Tobias H.
    Posted July 31, 2009 at 5:13 am | Permalink

    Hey!

    I’m quite new to jQuery and certainly not the most-skilled programmer – but thanks to your fine tutorial I fully understood how to get this to work. Great stuff!

    But if you would not like this menu to just toggle but fade in and out I googled a bit and found a solution provided by Karl Swedberg, the Guru himself:

    jQuery.fn.fadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: ‘toggle’}, speed, easing, callback);
    };

    $(’img.menu_head’).click(function () {
    $(’ul.menu_body’).fadeToggle();
    });

    This creates a nice fading effect showing or hiding the menu.

    Best regards from Germany,
    T.

  31. Tobias H.
    Posted July 31, 2009 at 5:25 am | Permalink

    Me again …

    In your last paragraph of code there is a mistake where it shows the MOUSEOUT function. There is a ‘.’ in front of the bracket where it says:

    $(’ul.menu_body li a’).mouseout.(function () {
    $(this).animate({ fontSize: “12px”, paddingLeft: “10px” }, 50 );
    });

    Correct this would be:
    ======================
    $(’ul.menu_body li a’).mouseout(function () {
    $(this).animate({ fontSize: “12px”, paddingLeft: “10px” }, 50 );
    });

    Anyway, great stuff, really!
    Bstrgrds, T.

  32. Tobias H.
    Posted July 31, 2009 at 5:30 am | Permalink

    Hehehe … me again:

    Is there a way to use a different image in the top menu bar to show an arrow pointing downwards and replacing this bit with an arrow pointing upwards, as long as the menu is collapsed? Has anyone ever thought about that? I think this would look nice and also would directly inform you visually that this menu is already collapsed (should be clear anyhow, but … you know, as a feature?)

    Bstrgrds,
    T.

  33. Posted July 31, 2009 at 8:00 pm | Permalink

    Very nice application. i can get starting re-designing my website.

  34. Posted August 4, 2009 at 1:06 am | Permalink

    Great drop down effect, the only concern I have is with the usability for people who have javascript disabled on their browsers.

  35. David
    Posted August 20, 2009 at 5:32 am | Permalink

    FYI, you’ve used an image on this page that’s bigger than your main content area. It breaks your template by shoving the main content off the left side of the page on a 1024px width monitor. There is no horizontal scroll bar, so your users are screwed.

  36. timmyo
    Posted August 31, 2009 at 12:40 am | Permalink

    @Fede re: Hi, i have one “problem”. I cant make this to go over objects, images or flash, it’s moves all the content down. It is posible TO FLOAT OVER OBJECTS?

    The most practical solution is to set your “topnav” div to a fixed height and set the overflow to “visible”. That way it won’t stretch and knock everything down and the dropdown will float over the other content.

    best

  37. Posted September 8, 2009 at 6:24 am | Permalink

    Thanks this info..

    Your web site full professional…

  38. awake
    Posted September 20, 2009 at 7:03 am | Permalink

    ur the man…

  39. awake
    Posted September 20, 2009 at 8:47 am | Permalink

    How can one prevent this menu from pushing down the whole page???

  40. Posted October 11, 2009 at 10:41 am | Permalink

    Awsome Effect – very nicely designed too! I am definetley going to use this effect, thank you so much for presenting it!

  41. Andrew
    Posted November 9, 2009 at 7:08 pm | Permalink

    Very good tutorial, I am bookmarking your website for future reference and further jQueryness! :D

  42. Posted November 12, 2009 at 8:47 am | Permalink

    Nice tutorial. For those who need a version that works on mouseover and mouseout, I’ve written a tutorial on my blog: http://www.mindsculpt.net/2009/11/jquery-animated-rollover-drop-down-navigation/

    I needed it to work that way for a project, so I rewrote it based on the code here and thought I’d share it with everyone.

  43. Posted November 28, 2009 at 1:40 am | Permalink

    Cool!

  44. Posted December 29, 2009 at 7:01 pm | Permalink

    nice job,guys…

  45. Posted January 19, 2010 at 8:17 am | Permalink

    Hi,

    Thanks for the great menu. I have a slight problem. In IE 7 there seems to be a 5px gap just above the menu and below the header image. This is the same on your demo page of your menu. Is there any way to fix this.

    Cheers

    Steve

  46. timo
    Posted January 19, 2010 at 9:54 pm | Permalink

    Hello

    if i use another menu same time.
    navigation dosent work. both menus opening at same time. do you have somekind of solution?

    timo

  47. Posted January 24, 2010 at 9:10 pm | Permalink

    I had the same trouble as many of you, where the menu would push content on the page down, instead of floating on top. I asked around and found that the solution is simple. Simply add the following lines of code to your style.css page:

    td
    {
    position:relative;
    }
    .menu_body
    {
    position:absolute;
    /*then use top left to make it in the correctly position*/
    }

    And that’s it – the menu will now float on top of content below it instead of pushing it down.

    Great menu by the way, very attractive and functional. I imagine I’ll be using this on many a website!

  48. Rakim
    Posted January 25, 2010 at 7:26 pm | Permalink

    Thank You for this. It is great. I have a problem. I can get more than one button next to each other and managed to sort out problem of the whole menu “falling”. I do however have the problem where whichever button I click the dropdown is always the same. THis is no good because you want different dropdown subheadings for each button. I of course have changed the headings in the ‘li’ in the html but for some reason I always get the same dropdown for all buttons when clicked. I wasted the whole day ont his problem.

  49. Kris
    Posted January 27, 2010 at 11:56 am | Permalink

    Hello, there is no direct email link anywhere, so i figure i’d post it here. In your downloadable zip file, there is a spelling error in your CSS file that prevents text from shrinking back down to size upon mouserollout. You have fpmt-size:10px; instead of font-size:10px;

    Hope this helps

  50. Posted March 16, 2010 at 3:02 pm | Permalink

    very useful thanks

  51. Posted April 7, 2010 at 10:07 am | Permalink

    Can anyone tell me how to put a cursor on the drop down menu so it appears more like a link?

  52. Posted April 8, 2010 at 10:25 am | Permalink

    This was a great post. Quick and easy and you explained why you needed each line. I’ve taken it and customized it to fit my application needs. You can check it out here: http://www.fredmastro.com/post/My-Customized-version-of-ClarkLabe28099s-Animated-Drop-Down-Menu-with-jQuery.aspx

    I used it to copy dates from one date picker to the next.

  53. Posted April 9, 2010 at 4:19 am | Permalink

    Yeah, I like this idea of drop down menu much better. Can’t wait to try on my own. Thank you

  54. Posted April 14, 2010 at 10:20 pm | Permalink

    very good!

    thanks !

    I am form china!

  55. Posted April 16, 2010 at 1:18 am | Permalink

    I am having a problem with this in IE 6,7,8. The menu expands to the right of the drop down menu.

    I have added in absolute positioning and z-index so the menu does not push down the rest of the page.

    You can see it not working at:
    http://www.nothinghidden.com.au/

    Any ideas on how to fix?

  56. Posted May 28, 2010 at 5:29 am | Permalink

    A very VERY nice post… Many thanks :D

  57. Posted June 12, 2010 at 8:56 pm | Permalink

    6

  58. Posted June 21, 2010 at 9:20 am | Permalink

    This is really “pesdets” (pesdets – bad Russian word) in IE6.
    But menu is nice…. (:

  59. Pierrot10
    Posted July 15, 2010 at 3:13 pm | Permalink

    HEllo,
    That script is very good, but I ask me how I could do the same but with several menu.
    For exemple:
    NAVGATE – NAVIGATE 1 – NAVIGATE 2 – NAVIGATE 3?

    The goal is to develop only one of them when I click on it

  60. Posted August 17, 2010 at 10:09 am | Permalink

    Thx from Sarajevo!

  61. Posted August 17, 2010 at 10:17 pm | Permalink

    Good Inspiration…………….
    Thank You……………

  62. Posted August 18, 2010 at 12:16 am | Permalink

    Very useful , You save my site.
    Thanks a lot.

  63. Rider-LV
    Posted August 20, 2010 at 11:09 pm | Permalink

    Hello, I have same problem as Pierrot10 – script works for all menus same time, and I dont have various names for menus.

    Please help me.

    And thanks for great menu!

167 Trackbacks

  1. [...] Animated Drop Down Menu [...]

  2. [...] released an excellent tutorial on how to create a vertical animated drop down menu using jQuery. One of the most beautiful drop down menus i’ve seen so far. Spread this post [...]

  3. By: Animated Drop Down Menu - Con jQuery y Css on December 16, 2008 at 5:45 pm

    [...] Animated Drop Down Menu with jQuery, un bonito menú desplegable basado en jQuery y Css. Muy práctico para ubicarlo en la sección superior de nuestro header, ya que ocupa muy poco lugar y a su vez lograra llamar la atención de los usuarios. Me recuerda mucho al menú de NETTUTS como a todos los de la red de Envato. [...]

  4. By: Menús animados con javascript jQuery. | Teimagino.com on December 17, 2008 at 12:33 am

    [...] byron on Dic.17, 2008, under Producción multimedia Easy AdSenser by Unreal Menú desplegable animado jQuery, un buen menú animado desplegable desarrollado en hojas de estilo CSS y javascript [...]

  5. By: Animated Drop Down Menu with jQuery and CSS on December 17, 2008 at 4:07 pm

    [...] Animated Drop Down Menu – Learn how to create a great looking drop down menu with a slick effect using jQuery and CSS. Definitely useful and very easy to implement drop-down site navigation. [...]

  6. [...] jQuery ve CSS ile hazırlanmış olan bu Drop Down menü ile ilgili ingilizce açıklamayı burada bulabilirsiniz. (No Ratings [...]

  7. By: Animated Drop Down Menu with jQuery | Exoxfire on December 18, 2008 at 6:43 pm

    [...] Animated Drop Down Menu with jQuery, un bonito menú desplegable basado en jQuery y Css. Muy práctico para ubicarlo en la sección superior de nuestro header, ya que ocupa muy poco lugar y a su vez lograra llamar la atención de los usuarios. Me recuerda mucho al menú de NETTUTS como a todos los de la red de Envato. [...]

  8. [...] Animated Drop Down Menu [...]

  9. [...] Animated Drop Down Menu with jQuery, un bonito menú desplegable basado en jQuery y Css. Muy práctico para ubicarlo en la sección superior de nuestro header, ya que ocupa muy poco lugar y a su vez lograra llamar la atención de los usuarios. Me recuerda mucho al menú de NETTUTS como a todos los de la red de Envato. [...]

  10. [...] Animated Drop Down Menu with jQuery Ausführliches Tutorial zu animierten Dropdown-Menüs. [...]

  11. By: 25 jQuery Tutorials for Improved Navigation Menus on January 26, 2009 at 6:24 pm

    [...] Animated Dropdown Menu with jQuery [...]

  12. [...] Animated Drop Down Menu with jQuery [...]

  13. [...] 26 – Animated Drop Down Menu with jQuery [...]

  14. By: 100 Best JavaScript Resources | Spoonfed Design on February 9, 2009 at 1:11 pm

    [...] Animated Drop Down Menu with jQuery [...]

  15. [...] Animated Drop Down Menu with jQuery es un bonito menú desplegable basado en jQuery y Css.Ocupa muy poco lugar y a la vez lograra llamar la atención de los usuarios. Tiene un gran parecido al menu de NETTUTS como a todos los de la red de Envato. [...]

  16. By: 100个最佳的JavaScript资源(1~20) | 寂静之声 on February 25, 2009 at 5:43 am

    [...] jQuery的动态下拉菜单 Animated Drop Down Menu with jQuery [...]

  17. By: Menu Drop Down en Wordpress | Eliseos.Net on March 4, 2009 at 4:12 pm

    [...] Por lo que me puse a revisar a mis marcadores y recordé un Menú muy ligero y practico que creo ClarkLab. [...]

  18. [...] Animated Drop Down Menu with jQuery [...]

  19. [...] Animated Drop Down Menu with jQuery [...]

  20. [...] Animated Drop Down Menu with jQuery [...]

  21. By: Menu a discesa animato « TagTagWeb on April 13, 2009 at 8:51 am

    [...] Di seguito il link di un tutorial molto interessante su come costruire un menu a discesa animato utilizzando css e jquery: http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  22. [...] Animated Drop Down Menu with jQuery [...]

  23. [...] Animated Drop Down Menu with jQuery [...]

  24. [...] Animated Drop Down Menu with jQuery [...]

  25. [...] Animated Drop Down Menu with jQuery [...]

  26. [...] Animated Drop Down Menu with jQuery [...]

  27. [...] Animated Drop Down Menu with jQuery [...]

  28. [...] Animated Drop Down Menu with jQuery [...]

  29. [...] 19. Animated Drop Down Menu with jQuery [...]

  30. [...] 19. Animated Drop Down Menu with jQuery [...]

  31. By: jQuery ve CSS Menü | Sanaldev.net on May 28, 2009 at 10:57 pm

    [...] kendinize göre editleyebilirsiniz. Bu menü hakkında daha ayrıntılı bilgilere ulaşmak için buradan ingilizce olan sayfasına bakabilirsiniz. [...]

  32. [...] 19. jQuery下拉动画菜单 [...]

  33. [...] Animated Dropdown Menu with jQuery [...]

  34. [...] Animated Drop Down Menu with jQuery [...]

  35. [...] Animated Drop Down Menu with jQuery [...]

  36. [...] 19. Animated Drop Down Menu with jQuery [...]

  37. [...] 19. Animated Drop Down Menu with jQuery [...]

  38. [...] WHERE : http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  39. By: 提升网页设计品质的8种布局方案 on June 30, 2009 at 6:38 pm

    [...] Animated Drop Down Menu with jQuery [...]

  40. [...] Tutorial Demo [...]

  41. [...] Tutorial Demo [...]

  42. By: UIDeveloperWeb Blog » jQuery Plugins and Demos on July 26, 2009 at 6:22 am

    [...] Animated Drop Down Menu [...]

  43. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  44. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  45. By: 30 Drop-Down Menus - Top of your Mind on August 3, 2009 at 11:51 am

    [...] 12- Animated Drop Down Menu with jQuery [...]

  46. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  47. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  48. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  49. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  50. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  51. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  52. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  53. By: 30个免费下拉菜单式导航 » 淘宝导购 on August 5, 2009 at 6:12 am

    [...] Animated Drop Down Menu with jQuery jQuery+CSS. [...]

  54. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  55. [...] Animated Drop Down Menu with jQuery [...]

  56. By: 100个最佳的JavaScript资源(1~20) - Hobo on August 11, 2009 at 10:36 pm

    [...] jQuery的动态下拉菜单 Animated Drop Down Menu with jQuery [...]

  57. By: Animated Drop Down Menu on August 13, 2009 at 9:39 pm

    [...] Code and Download from ClarkLab Tags: Animated, CSS, Dropdown, jQuery, Menu [...]

  58. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  59. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  60. [...] Animated Drop Down Menu with jQuery [...]

  61. [...] Animated Drop Down Menu with jQuery [...]

  62. By: links for 2009-08-19 | Digital Rehab on August 19, 2009 at 4:38 pm

    [...] ClarkLab » Animated Drop Down Menu with jQuery (tags: jquery menu navigation javascript dropdown tutorial webdesign menus) [...]

  63. [...] Tutorial Demo [...]

  64. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  65. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  66. [...] ClarkLab ? Animated Drop Down Menu with jQuery サンプルデモをみるとわかりますが、ムヨンとでてきます。また、リンクも文字が少し大きくなる事で、リンクとわかり易いのが特徴的ですね。 [...]

  67. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  68. [...] 13. Animated Drop Down Menu with jQuery [...]

  69. [...] Dynamic PHP/CSS menu Creating an Outlook Navigation Bar using the ListView and Accordion Controls Animated Drop Down Menu with jQuery jQuery UI Potato Menu Make a Mega Drop-Down Menu with jQuery A cross-browser drop-down cascading [...]

  70. [...] 13. Animated Drop Down Menu with jQuery [...]

  71. By: 10 incredible JQuery navigation menus on September 7, 2009 at 9:25 am

    [...] A DropDrown menu is often a good choice when you have many items to display. In such cases, what about animating it? Source [...]

  72. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  73. By: Navigasyon menu | nettuts on September 9, 2009 at 2:42 pm

    [...] Nasıl yapıldığını merak ediyorsanız da buraya [...]

  74. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  75. By: BlogoTips » 10 Navigatin menus with JQuery on September 15, 2009 at 2:00 am

    [...] A DropDrown menu is often a good choice when you have many items to display. In such cases, what about animating it? Source [...]

  76. By: 13 Menu Design Tutorial using jQuery on September 15, 2009 at 7:10 am

    [...] Animated Drop Down Menu with jQuery [...]

  77. By: 清晰博客 » 36个引人注目JQuery导航菜单 on September 17, 2009 at 8:40 am

    [...] 19. jQuery下拉动画菜单 [...]

  78. By: 36个引人注目的导航菜单(下) - 518工作室 on September 20, 2009 at 8:34 am

    [...] 19. jQuery下拉动画菜单 [...]

  79. By: 30+ Drop Down Menu Scrips | oOrch Blog on September 24, 2009 at 11:32 am

    [...] Animated Drop Down Menu with jQueryDropdown with much slicker effect using jQuery and CSS. [...]

  80. [...] 13. Animated Drop Down Menu with jQuery [...]

  81. [...] Kaynak [...]

  82. [...] A DropDrown menu is often a good choice when you have many items to display. In such cases, what about animating it? Source [...]

  83. By: 30个免费下拉菜单式导航 » 淘宝吧 on September 26, 2009 at 10:57 am

    [...] Animated Drop Down Menu with jQuery jQuery+CSS. [...]

  84. [...] 19. jQuery下拉动画菜单 [...]

  85. [...] 13. Animated Drop Down Menu with jQuery [...]

  86. [...] Animated Drop Down Menu with jQuery [...]

  87. By: JS脚本备忘更新 « 日落旅馆 on October 2, 2009 at 4:29 am

    [...] Animated Drop Down Menu with jQuery [...]

  88. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  89. By: Tutoriais e demos de menus em JQuery | idealMind on October 20, 2009 at 5:05 pm

    [...] plugin.  Ensina tudo mesmo, desde o início. E o resultado é um bonito menu dropdown estilizado. Tutorial – [...]

  90. By: Os 25+… Menus e Plugins em jQuery! | PixelFont on October 22, 2009 at 4:59 am

    [...] 19. Animated Drop Down Menu with jQuery [...]

  91. [...] jQuery ve CSS ile hazırlanmış olan bu Drop Down menü ile ilgili ingilizce açıklamayı burada bulabilirsiniz. [...]

  92. By: 25 Menus e Plugins para Jquery | Renan Lima on October 23, 2009 at 12:08 pm

    [...] Animated Drop Down Menu with jQuery Drop down menus são uma maneira realmente conveniente para colocar um menu grande em um espaço [...]

  93. By: 10 incredible JQuery navigation menus | meshdairy on October 28, 2009 at 11:08 pm

    [...] A DropDrown menu is often a good choice when you have many items to display. In such cases, what about animating it? Source [...]

  94. [...] Tutorial: http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  95. [...] Animated Drop Down Menu with jQuery Superfish v1.4.8 – JQuery Drop Down Menu Make a Mega Drop-Down Menu with jQuery How to Make a [...]

  96. [...] Animated Drop Down Menu with jQuery [...]

  97. [...] 25. Animated Drop Down Menu with jQuery [...]

  98. By: 42 jQuery Navigation based Techniques | Codrops on November 22, 2009 at 2:03 pm

    [...] : visit live demo : [...]

  99. [...] Animated Drop Down Menu with jQuery [...]

  100. [...] Animated Drop Down Menu with jQuery [...]

  101. By: 38 jQuery And CSS Drop Down Multi Level Menu Solutions on November 29, 2009 at 10:35 am

    [...] 13. Animated Drop Down Menu with jQuery [...]

  102. [...] 13. Animated Drop Down Menu with jQuery [...]

  103. By: 20 menus para jQuery - Desarrollo WEB on December 8, 2009 at 9:20 am

    [...] http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  104. [...] [...]

  105. By: 25+ jQuery plugins on December 15, 2009 at 2:23 pm

    [...] Animated Drop Down Menu with jQuery-This great feature plugin fit a large menu into a really small initial space. For a long time people have just used a form element for standard drop downs, but with minimal effort you can create a much slicker effect using jQuery and CSS. [...]

  106. By: Animated Dropdown Menu with jQuery « Jbloo on December 15, 2009 at 5:57 pm

    [...] Animated Dropdown Menu with jQuery Animated Dropdown Menu with jQuery [...]

  107. [...] Animated Drop Down Menu with jQuery This tutorial demonstrates how to create a simple, single animated drop-down menu based on an unordered list, with jQuery. [...]

  108. [...] 13. Animated Drop Down Menu with jQuery [...]

  109. [...] Анимированные Drop Down Menu – Узнайте, как создать большим нетерпением выпадающее меню с гладкой эффекта с помощью JQuery и CSS. Определенно полезно и очень легко реализовать раскрывающийся навигации по сайту. [...]

  110. By: 14个出色的导航菜单实例教程 - 菠菜博 on December 29, 2009 at 5:39 pm

    [...] Animated Drop Down Menu with jQuery | 演示 [...]

  111. [...] Tutorial: http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  112. By: 享受生活 » 36个引人注目JQuery导航菜单 on January 2, 2010 at 2:33 am

    [...] 19. jQuery下拉动画菜单 [...]

  113. By: 25 sexy jQuery Drop Down Multi Level Menu — Narga on January 6, 2010 at 5:31 am

    [...] 10. Animated Drop Down Menu with jQuery [...]

  114. [...] Animated Drop Down Menu with jQuery | 演示 [...]

  115. [...] Animated Drop Down Menu with jQuery [...]

  116. [...] Animated Drop Down Menu with jQuery [...]

  117. By: An animated drop down menu | Web Design Two on February 8, 2010 at 1:09 pm

    [...] The link to it is http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  118. [...] Animated Drop Down Menu [...]

  119. By: 五色六彩 on February 21, 2010 at 9:01 pm

    [...] Animated Dropdown Menu with jQuery [...]

  120. [...] Animated Drop Down Menu with jQuery [...]

  121. By: Animated Drop Down Menu « Jquery Labs on March 6, 2010 at 3:32 am

    [...] Tutorial Tutorial Page [...]

  122. [...] Website Link [...]

  123. [...] Demo | Tutorial [...]

  124. [...] 公式サイト [...]

  125. [...] Animated Drop Down Menu with jQuery [...]

  126. By: song-zone! on March 23, 2010 at 5:57 am

    [...] Animated Drop Down Menu with jQuery [...]

  127. [...] Animated Drop Down Menu with jQuery [...]

  128. [...] Выпадающее меню с анимацией jQuery | Демо версия [...]

  129. [...] [...]

  130. By: 推荐八种网页布局技巧 on March 26, 2010 at 7:55 pm

    [...] Animated Drop Down Menu with jQuery [...]

  131. By: 4 Exemplos de menu em JQUERY « O Mundo Do Mário on April 14, 2010 at 6:28 pm

    [...] Link: http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/ [...]

  132. [...] A DropDrown menu is often a good choice when you have many items to display. In such cases, what about animating it? Source [...]

  133. [...] Animated Drop Down Menu with jQuery [...]

  134. By: 基于jQuery和CSS的动画下拉菜单 on April 27, 2010 at 6:44 am

    [...] 动画下拉菜单 – 学习如何使用jQuery和CSS创建一个不错的圆滑下拉菜单效果。非常有用,非常容易实现下拉式网站的导航。 [...]

  135. [...] A DropDrown menu is often a good choice when you have many items to display. In such cases, what about animating it? Source [...]

  136. [...] Animated Drop Down Menu with jQuery [...]

  137. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  138. By: 33 jQuery tutorials to create Navigation Menu on June 2, 2010 at 3:43 am

    [...] 24. Animated Drop Down Menu with jQuery [...]

  139. [...] 13. Animated Drop Down Menu with jQuery [...]

  140. [...] 24. Animated Drop Down Menu with jQuery [...]

  141. [...] 11. Animated Drop Down Menu with jQuery [...]

  142. By: 33 jQuery Menü | SyncapNoktaOrg on June 10, 2010 at 2:56 am

    [...] 24. Animated Drop Down Menu with jQuery [...]

  143. [...] Demo | Scrift Online | Download [...]

  144. [...] Animated Drop Down Menu with jQuery Dropdown with much slicker effect using jQuery and CSS. [...]

  145. [...] Animated Drop Down Menu with jQuery — Demo | Details | DownloadIn this tutorial, author will show you how to use jQuery for making Drop down menus are a really convient way to fit a large menu into a really small initial space. [...]

  146. [...] Animated Drop Down Menu with jQuery — Demo | Details | DownloadIn this tutorial, author will show you how to use jQuery for making Drop down menus are a really convient way to fit a large menu into a really small initial space. [...]

  147. [...] Animated Drop Down Menu with jQuery — Demo | Details | Download In this tutorial, author will show you how to use jQuery for making Drop down menus are a really convient way to fit a large menu into a really small initial space. [...]

  148. [...] Animated Drop Down Menu with jQueryクリックすると、すっとドロップダウン型で表示されるメニュー [...]

  149. [...] Animated Drop Down Menu with jQuery — Demo | Details | Download In this tutorial, author will show you how to use jQuery for making Drop down menus are a really convient way to fit a large menu into a really small initial space. [...]

  150. [...] 5. Animated Drop Down Menu with jQuery [...]

  151. [...] bir jQuery Menünün linklerini rastgele renkler ile nasıl gösterebileceğimiz anlatmıştır. Dropdown Animasyon Menü Dersi — Demo | Detaylar| [...]

  152. [...] 19. Animated Drop Down Menu with jQuery [...]

  153. [...] bir jQuery Menünün linklerini rastgele renkler ile nasıl gösterebileceğimiz anlatmıştır. Dropdown Animasyon Menü Dersi — Demo | Detaylar| [...]

  154. By: 15+ Amazing jQuery Navigation Menu Tutorials on July 9, 2010 at 4:48 am

    [...] Animated Drop Down Menu with jQuery — Demo | Details | Download [...]

  155. [...] Animated Drop Down Menu with jQuery [...]

  156. By: 35 jQuery Animation Tutorials » abdie.web.id on July 12, 2010 at 7:09 pm

    [...] Animated Drop Down Menu with jQuery [...]

  157. [...] Animated Drop Down Menu with jQuery [...]

  158. [...] Animated Drop Down Menu with jQuery (jQuery ile animasyonlu menü) — Test | [...]

  159. [...] Animated Drop Down Menu with jQuery [...]

  160. [...] Animated Drop Down Menu with jQuery [...]

  161. By: 35 jQuery Animation Tutorials on July 19, 2010 at 1:46 pm

    [...] Animated Drop Down Menu with jQuery [...]

  162. [...] Animated Drop Down Menu with jQuery [...]

  163. [...] Dropdown Animasyon Menü Dersi — Demo | Detaylar| Download [...]

  164. [...] Animated Drop Down Menu with jQuery [...]

  165. By: 37 Amazing Tutorials for jQuery Navigation Menus on July 23, 2010 at 1:23 pm

    [...] 36-Animated Drop Down Menu with jQuery [...]

  166. [...] 19. Animated Drop Down Menu with jQuery [...]

  167. [...] Animated Drop Down Menu with jQuery [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*
  • Skills/References
  • From Flickr

  • Subscribe (RSS)
  • Clark lives in Austin, Texas. He is a freelance web designer. In his spare time, he likes sports and being awesome.
  • templamatic
  • Well Designed

    My New Camera (Canon XSi)

    PaStore: Modular Storage

    Ajax Whois 2.0

    Tennessee Summertime

    Discovery Channel Redesign