Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7797235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:37:15+00:00 2026-06-01T23:37:15+00:00

I just noticed https://www.bankofamerica.com/ and I really like the way their main navigation slides

  • 0

I just noticed https://www.bankofamerica.com/ and I really like the way their main navigation slides up and down smoothfully..

Can anybody tell me how to get a similar one? Is it a plugin or just some mixtures of “slideup”/”slidedown” jQuery?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:37:17+00:00Added an answer on June 1, 2026 at 11:37 pm

    jq Plugs -> http://speckyboy.com/2011/07/04/15-fresh-jquery-menu-plugins-and-tutorials/

    Furthermore, there are MANY ways to do this, including through PURE CSS!

    It’s really not hard at all, it’s all in what you prefer.

    Also, here’s a couple pure css menu generators:

    • http://www.cssmenumaker.com/
    • http://css3menu.com/
    • http://www.cssmenubuilder.com/home

    Just FYI, the following is the custom jQuery Plugin BoA uses for their menu

    (function($){
        $.fn.mainmenu=function(){
            var $powerMenu=$(this);
            var $lastMenuCloseListener=null;
            var isIE6=($.browser.msie&&$.browser.version.substr(0,1)<7);
            var config={sensitivity:1,interval:0,over:menuOnHandler,timeout:0,out:menuOffHandler};
            $("li",$(this)).data("hasFocus",false);$("li",$(this)).hoverIntent(config);
            $("li > a",$(this)).focus(function(event){
                if(event.keyCode==13) {
                    var $liElement=$(this).parent();
                    if(!$liElement.data("hasFocus")){
                        $liElement.trigger("liFocusInEvent");
                        $liElement.data("hasFocus",true);
                        if($liElement.find("div.submenu-last").length!=0){
                            handleLastSubmenuClose($liElement)
                        }
                    }
                }
                else{
                    $("li",$powerMenu).each(function(){
                        if($(this).data("hasFocus")&&($(this).get(0)!=$(this).parent().get(0))){
                            $(this).trigger("liFocusOutEvent")
                        }
                    })
                }
            });
            addLastMenuCloseListener($("div.submenu-last:last",$powerMenu).closest("li"));
            $("li > a",$(this)).click(function(event){
                event.preventDefault();
                var $liElement=$(this).parent();
                if(!$liElement.data("hasFocus")){
                    $liElement.trigger("liFocusInEvent");
                    $liElement.data("hasFocus",true)}});
                    $("li > a",$(this)).keydown(function(event){
                        if(event.shiftKey&&event.keyCode==9){
                            var $prevLIElement=$(this).parent().prev();
                            $(this).parent().trigger("liFocusOutEvent");
                            if($prevLIElement.length>0){
                                event.preventDefault();
                                $prevLIElement.children("a:first-child").focus()
                            }
                        }
                        else{
                            if(event.keyCode==9){
                                $(this).parent().trigger("liFocusOutEvent");
                                if($(this).parent().next().length>0){
                                    event.preventDefault();
                                    $(this).parent().next().children("a:first-child").focus()
                                }
                            }
                        }
                        if(event.keyCode==40){
                            ($(this).next().children("a:first-child").length!=0)?$(this).next().children("a:first-child").focus():$(this).next().children(".submenu-left").children("a:first-child").focus()
                        }
                    });
                    $("li",$(this)).bind("liFocusInEvent",menuOnHandler);
                    $("li",$(this)).bind("liFocusOutEvent",menuOffHandler);
                    $("div.submenu a, div.submenu-last a",$(this)).keydown(function(event){
                        if(event.keyCode==38){
                            var $prevItem=($(this).prev().length!=0)?$(this).prev():$(this).parent().prev().children("a:last-child");
                            if($prevItem.length!=0&&!$prevItem.is("div.dash-border")){
                                $prevItem.focus()
                            }
                            else{
                                if($prevItem.is("div.dash-border")){
                                    $prevItem.prev().focus()
                                }
                            }
                        }
                        else{
                            if(event.keyCode==40){
                                var $nextItem=($(this).next("a, div.dash-border").length!=0)?$(this).next("a, div.dash-border"):$(this).parent().next().children("a:first-child");
                                if($nextItem.length!=0&&!$nextItem.is("div.dash-border")){
                                    $nextItem.focus()
                                }
                                else{
                                    if($nextItem.is("div.dash-border")){
                                        $nextItem.next().focus()}}}}});
                                        if(isIE6){
                                            $("li > div.submenu, li > div.submenu-last",$(this)).each(function(){
                                                if(!(($(this).width()%2)==0)){
                                                    var submenu_width=$(this).width();
                                                    submenu_width+=1;$(this).css({"width":submenu_width})
                                                }
                                                var submenu_bottom_width=$(this).width()-10;
                                                $(this).find("div.submenu-bottom").css({"width":submenu_bottom_width})
                                            })
                                        }
                                        function menuOnHandler(event){
                                            var $submenu=$(this).find("div.submenu,div.submenu-last");
                                            var $submenuLeft=$(this).find(".submenu-left");
                                            var $submenuRight=$(this).find(".submenu-right");
                                            $submenu.addClass("off-screen");
                                            var current_submenu_width=$submenuRight.length!=0?$submenuLeft.width()+$submenuRight.width()+40+6:
                                            $submenu.width();
                                            $submenu.removeClass("off-screen");
                                            $submenu.css({"visibility":"visible","display":"none","width":current_submenu_width}).slideDown("fast");
                                            $submenu.prev("a").addClass("select")
                                        }
                                        function menuOffHandler(){
                                            $(this).find("div.submenu,div.submenu-last").css({visibility:"hidden"});
                                            $(this).find("div.submenu,div.submenu-last").prev("a").removeClass("select");
                                            $(this).data("hasFocus",false)}
                                            function addLastMenuCloseListener($liElement){
                                                var $nextTabbable=findNextTabbable($liElement);if($nextTabbable!=null){
                                                    $nextTabbable.focus(function(event){
                                                        $liElement.trigger("liFocusOutEvent")
                                                    })
                                                }
                                            }
                                            function findNextTabbable($element){
                                                var $nextElement;
                                                var $nextTabbable;
                                                if($element.is("body")){
                                                    return null
                                                }
                                                $nextElement=$element.next();
                                                if($nextElement.is(":tabbable")){
                                                    return $nextElement
                                                }
                                                $nextTabbable=$element.next().find(":tabbable:first");
                                                if($nextElement.length==0){
                                                    $nextTabbable=findNextTabbable($element.parent())
                                                }
                                                else{
                                                    if($nextTabbable.length==0){
                                                        $nextTabbable=findNextTabbable($nextElement)
                                                    }
                                                }
                                                return $nextTabbable
                                            }
        }
    })(jQuery);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I noticed in this video - https://www.youtube.com/watch?v=xIxDJof7xxQ - that Ian uses a text editor
I'm finishing up my first site: http://www.audio-agent.com/ . I just noticed that, while it
I just noticed that say http://s7.addthis.com/js/250/addthis_widget.js#pub=PUBID does the equivalent of http://s7.addthis.com/js/250/addthis_widget.js?pub=fct-250 but is much
Dear fellow programmers, I am working on my B&B's website www.bordemundo.com and would like
I just noticed today that a website I am creating has the WWW or
I was just looking Christmas recipes and I noticed this URL. http://www.bbc.co.uk/food/recipes/search?dishes[]=mulled_wine Can anyone
Just adding my site - http://ahardenjr.com - to my live host and noticed my
I've noticed for quite a long time that strange domains such like jsev.com, cssxx.com
If I pass http://www.ebay.com to this. Somewhere along the way ebay changes my url,
Just noticed in ByteArrayOutputStream , the toByteArray() is declared as, public synchronized byte toByteArray()[];

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.