Does anyone know if there is a JQuery plugin that will create a "slide down" menu similar to the one featured here : http://www.bu.edu/
Not sure if I am using the right term for this type of menu and I've been searching Google and StackOverflow for some time now with no success....
Thanks in advance!
Why don't you make your own menu? try with a list
<ul>
andjQuery
.mouseover()
to make a div.show()
withblind
effect ofjQuery UI
Take a look at this: Dropdown menu
It's made with jQuery and jQuery-UI so if you use it add tou your document
<head>
thejQuery
library and afterjQuery-UI
causejQuery-UI
needsjQuery
to workThat would be very easy to build without a plugin. Create a sub-menu div and set display:none in the CSS.
Then create a hover listener to "slide down" the sub menu.
On the mouseout portion of the hover event, rather than simply closing the submenu, wrap the closing of the submenu in a setTimeout of 200ms, and then add a mouseover event in the submenu to cancel the setTimeout: (otherwise the submenu would close immediately upon leaving the menu)
Have you tried an approach without using js or jQuery?
I mean, you can do it just using HTML5 with CSS3 transitions.
It will look like this:
HTML:
CSS
check out this JsFiddle example
EDIT
To fit your question, I made some change in the code above and add a little jQuery. Like this:
You can see the results in this JsFiddle example