• 0

jQuery Plugin to recreate this menu effect?


Question

Hello,

Im developing a website and am playing around with a few ideas for the top section.

I saw this and really liked the menu navigation (the big beefy drop downs with images and links) and was wondering whether there is a jQuery plugin to recreate it.

I had a quick peek with FireBug and can see some basic plugins being used but i think (and fear) the menu effect is mainly custom code (which i am not decent enough to produce myself).

So, on the off chance, anyone know of a way to recreate this sort of menu effect? (Goldman Sachs have a slighlty similar one too)

Cheers

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

It should be possible.

Style your navigation etc etc. Then use

$('ul#yourNavID li').hover(function() {
	$('ul, this).hide().slideDown();
},function() {
	$('ul, this).slideUp();
});

Good luck :D

Link to comment
Share on other sites

  • 0

The menu effect is mainly in the CSS, a JQuery plugin shouldn't be necessary, just the standard effect functions to have the menu appear when the parent is hovered over.

Take a look at JQuery's doc, or look at ++iHazCool added. Something along those lines is all you really need.

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.