Vertical Reveal Menu

Aug 4, 2007

I've been working on a vertical reveal menu. Right now it
works ok with CSS. But what i'd like it to do is when you mouse over,
reveal the menu and have that menu stay open until the user mouses
over another menu item. Right now it's a bit jumpier than i'd like it
and would like to basically have it stay open on a mouse out event,
again until it hits another menu item. Code:

View 3 Replies


ADVERTISEMENT

Vertical Menu - Height Of The Second Level Menu Results In Their Being Gaps In Between Each Menu Item

Jun 3, 2009

The problem is that the height of the second level menu results in their being gaps in between each menu item so that as you move your mouse down the second menu items it quickly closes again. scripting novice fix this by telling me which variable I need to change either in the Java script or the CSS files.

View 2 Replies View Related

New Style Sheet - Menu To Reveal / Hide DIV?

May 19, 2009

I have a script that works perfectly on a live site that basically has a menu that reveals a hidden DIV and when you click a link, and then when you click a new link it hides the previous div and reaveals the new one. It is as follows:

Javascript Code:
Original - javascript Code
LastLayer = "nothing"; // the first div/layer
function openObject(theLayer){
// pass the name of the layer you want to bring to the top
// Then hide the last layer, and make the layer passed visible. This could have been done using the z-index property
if (document.getElementById) { // if it's IE5 or NS6 use this syntax to access the visiblity attribute
eval("document.getElementById(LastLayer).style.visibility = 'hidden'")
eval("document.getElementById(theLayer).style.visibility = 'visible'")
LastLayer = theLayer;
}
if(document.layers) { // if it's NS4 use this syntax to access the visiblity attribute
eval('document.layers[LastLayer].visibility = "hidden"')
eval('document.layers[theLayer].visibility = "visible"')
LastLayer = theLayer;
} .....

Now I am redesigning the site to work with a new style sheet, (There wasn't one before, it was all inline styles. Anyway, it broke my script. The CSS has a class that gives certain DIV's visibility attribute the 'hidden' value by default. I was planning on using the above script to reveal/hide them, but it does nothing. Here is the CSS that affects the divs I am referring to.

CSS Code:
Original - css Code
.job {
border: thin solid #000000;
float: right;
margin-right: 25px;
padding-left: 10px;
width: 40%;
display: none;
}
.job { border: thin solid #000000; float: right; margin-right: 25px; padding-left: 10px; width: 40%; display: none;}
As you can see there is nothing fancy in the css that would cause any concern.

View 4 Replies View Related

JQuery :: A Menu Slider That Slide Up To Reveal Contents Of The Menuitem Clicked?

May 6, 2011

There are several sliders out there. But are there possibly a plugin or tut or an suggestion to how you could have a black bar on the bottom of the viewport with a menu on it and when clicking the menuitem it would slide up with content related to the menuitem..I would imagine the you could might tweek a existing slider with some z-index function?

View 3 Replies View Related

New JS Vertical Menu Up - Set The Menu To Automatically Expand On Mouse Rollover Instead Of Click?

May 6, 2010

How can I set the menu to automatically expand on mouse rollover instead of click? Here is the code as it stands right now:

$(document).ready(function () {
$('img.menu_class').click(function () {
$('ul.the_menu').slideToggle('medium');
});
});

Second Question: For some reason, the menu is appearing behind a table row when it expands, thus hiding a good portion of the menu. Here it is: [URL]

Try clicking on 'Products & Services', and then clicking on "Centerfire Rifle Suppressors" from the dropdown menu. When it takes you to that category page, click the menu again and you will see that the menu hides behind the <h1> table row.

View 2 Replies View Related

Add 3rd Level To Vertical Menu?

May 3, 2010

I would like to use the menu that is linked below. I implemented it on my website but I discovered that it can only go 2 levels deep. I would like it to go one more level and I think that would be done in the javascript but I can't tell for sure. Could someone steer me in the right direction? [URL]

View 2 Replies View Related

Vertical Menu Falling Off In IE

Apr 17, 2010

I am a newbie to Sitepoint, and relatively new to CSS and JS. I am using a script from Dynamic Drive and have posted this on their forum as well, with no luck. The menu looks great in every browser but IE. When you hover over the parent page and the child pages show up, they go away when you start to scroll down. But if you scroll really slow, they stay up. I am trying to avoid re-doing the whole thing. Both the CSS and the HTML are below. The site is computerdepot-online.net

[Code]...

View 15 Replies View Related

JQuery :: Slide-down Vertical Menu?

Feb 26, 2010

This is my HTML code:

Code:

<div id="vnav">
<ul>
<li>
<a href="index.php">Home</a>

[code]....

It's basically a vertical list of links, with more specific links hidden inside categories. When you click a category, the specific links should slide down. This is the JS/jQuery part:

Code:

<script type="text/javascript">
function slidey() {
$("#vnav ul li ul").slideDown("slow");

[code]....

so the problem here is that when you click a category, it expands ALL sub-categories and it's supposed to just expand the sub-categories related to the section clicked.

View 4 Replies View Related

Mega Menu Horizontal To Vertical

Nov 24, 2009

I'm currently trying to build a vertical mega menu as all the ones on the net seem to be set up for horizontal menus. I'm struggling a bit on a certian point as I'm not a very strong Javascript user.It places the mega menu under the button but i want it to appear to the side of the button and be flush with the top of it. I have made it appear to the side but I cant seem to make it run flush with the top of the button, it appears at the bottom of the button.The buttons are 142px wide and 28 in height.

View 1 Replies View Related

Vertical Image Menu To 100% Heigh?

Aug 26, 2009

If you look at this test page (http:[url]....), you see a vertical image menu. This menu is originally from http:[url]....But... how can you get it to 100% heigh?

View 5 Replies View Related

Vertical Menu - Onmouseout Bubbling

Apr 24, 2007

The objective is to create a stacked, inline vertical menu. Upon mousing over a menu option, a series of sublinks (children) presents itself immediately beneath the parent. The children push the rest of the menu options downward. We're ok up to this point.

Should the mouse pointer point to another menu option, the children of the former menu option pointed at disappear and the new children are displayed. We're still ok. Here's the code I use to accomplish this: Code:

View 4 Replies View Related

Add Vertical Hover Navigation Sub-menu?

Aug 24, 2010

I have an horizontal menu,but the menu items all are in image format.when mouseover on it, it display another color means it is in active state.(this is also an image of another color to differentiate active or not). Now i want to add vertical sub-menu of diff levels to the already existed menu(i.e original menu is of image format). Is it possible to add the sub-menu items to the image menu? if possible, i want the solution for it.

[Code]...

View 11 Replies View Related

Show / Hide Vertical Nav-Menu (jQ)

Mar 6, 2011

I have a nav menu with lists within lists (3 deep), with pattern as follows:

[Code]...

When a parent link is clicked it reveals the sub-list. What I would like to do is hide currently visible lists when another is revealed. I've tried to use .siblings but it dunt werk (or, at least, I can't make it happen!)

View 4 Replies View Related

Relative Position Of Vertical Menu Bar

Jul 2, 2004

I wonder if you can help? I've implemented a ready made JavaScript vertical toolbar into my Web site but have problems with positioning. It only has by default absolute positioning parameters and I need to change them to relative as whenever the browser is resized the menu stays at the same place on the screen. I was told that using <DIV> tags can help, but I have no idea how to do it.

Can anyone please submit a working example code of asigning relative parameters to the menu?

View 1 Replies View Related

Collapsible Vertical Menu Script

Sep 7, 2005

I'm looking to implement a Collapsible vertical navigation script into my site - i'v searched the forums and other various sites and found scripts that where close to what i wanted to achieve but missing various elements.

I'v attached an image to this post to show you what I had in mind and hopefully someone can help me (hopefully using css and as little javascript as poss - or perhaps using DOM?)

View 1 Replies View Related

Horizontal Yet Vertical Accordian Menu?

Aug 20, 2011

Alright so you have the header, horizontal menu, then content below it. The horizontal menu has to expand PUSHING the content down slightly expanding the wrapper. I'm hoping someone can help me out with this because right now it's not even horizontal. When I flip it it all breaks

[Code]...

View 1 Replies View Related

JQuery :: Superfish Vertical Menu Blues

Apr 12, 2011

I'm using the Superfish vertical menu to develop an online book. My vertical menu which consists of chapters and sections place on the side of my page, and is long enough to show all of the main items. However, as the chapters get lower in the page, the submenu items (my section names) get cutoff (there's not enough room to show all subitems for the final 2 chapters). So, I guess I have 2 questions:

1) Is there some sort of option to tell Superfish to realize "Hey, not enough room for the menu, so I need to move the submenu up higher" and if not

2) Could someone give me some direction as to how I might be able to move "up" a few of my submenus by diving into the code? In other words, instead of the first item in my submenu visually matching up with the main option, have the 3rd or 4th visually matchup, thereby giving me the extra space needed when close to the bottom of the page.

View 1 Replies View Related

JQuery :: Vertical Menu Plugin Recommendation?

Oct 20, 2011

Can any one recommend a vertical menu plugin that could be used in a sidebar. I've used Superfish, but I don't care for fly-outs and would prefer a collapsable version that drops straight down on click or mouse over.

View 1 Replies View Related

Auto Expand Vertical Menu Section?

Feb 17, 2011

I have an issue trying to expand a menu section to the current page for the deepest level items.

I am using this menu for the site: [URL]

This is the page source code:

HTML Code:
<html>
<head>
<title>Document</title>
<script type="text/javascript" src="support/jquery.js"></script>

[Code]....

As my Level 4 items don't show up in the breadcrumbs I have no clue how to make the menu section expand when those pages are selected.

View 1 Replies View Related

JQuery :: Collapsible Vertical Menu - How To Target Next Element

Sep 12, 2011

I have a following menu that I'd like to be collapsible.
<ul id="#menu-sidebar">
<li>Menu item 1
<ul><li>Menu item 1.1</li>
<ul></li>
<li>Menu item 2
<ul><li>Menu item 2.1</li>
</ul></li></ul>
This collapses and expands them, but of course all at same time.
$('#menu-sidebarli ul').hide();
$("#menu-sidebarli").click(function(){
$("#menu-sidebarli").toggle();
$(this).toggleClass("active");
});
I've been trying to experiment with the .next() trying to get the next ul li ul element but with little luck.
$('#menu-sidebar li ul').hide();
$("#menu-sidebar li").click(function(){
$("#menu-sidebar ul li").next().toggle();
$(this).toggleClass("active");

View 3 Replies View Related

JQuery :: Superfish: Vertical Menu With Horizontal Submenu?

Nov 16, 2011

I'm wondering how to modifiy the vertical menu of superfish to let the submenu appear horizontal next to the parent menu element:123 3a 3b 3c45I just spent some hours searching on Google andplayed around with the CSSbut could not manage to fix it.

View 1 Replies View Related

JQuery :: Vertical And Horizontal Tab Menu In A Single Page?

May 7, 2009

I am using both horizontal and vertical tab menu's in a single page. And on click of horizontal tab should select the corresponding vertical tab and along with the data linked to vertical data will be displayed in different div on the page. I am stuck with how to poputale these using jquery.

View 1 Replies View Related

JQuery :: Making Vertical Superfish Menu Drop Left?

Jul 17, 2009

Is there anyway to make a vertical super fish menu drop left? I have positioned the menu on the right side of the page so, I need sub-menus to drop left. Is this possible?

View 1 Replies View Related

JQuery :: Vertical Navigation Menu - White And Grey One On The Left

Oct 17, 2011

I'm looking for a menu like the white and grey one on the left of the following page [url] how to find something similar to use?

I don't mind about the bottom box containing the link description, I don't think this would help the navigation...

View 3 Replies View Related

Create Vertical Scrolling Menu Based On Mouse Movement?

May 21, 2009

Anybody know how to create this effect on mootools? code...

View 5 Replies View Related

JQuery :: Superfish Vertical Menu - Change It To Display Submenus On Left?

May 3, 2009

Love this menu. This menu will be appearing in module on right hand side of page. So I need the submenu to display on left, not right. So how to make this a right to left menu? I've played around a bit and have had no luck yet. I've used the navbar on another site and I'd really like to use this vertical menu too.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved