How to do this crazy menu ?

Discussion in 'HTML & Website Design' started by QubeSys Technologies, Mar 19, 2012.

  1. #1
    We are working on a project, where we have to do this crazy drop down menu.
    Not sure, how to plan this.

    Can anyone help ?

    See attached.
     

    Attached Files:

    QubeSys Technologies, Mar 19, 2012 IP
  2. michaelyx

    michaelyx Member

    Messages:
    92
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    38
    Digital Goods:
    3
    #2
    Woa that looks cool but I wouldn't want it on my site.

    I am sure there are ways but I am not any great css coder. Google my friend :)
     
    michaelyx, Mar 19, 2012 IP
  3. Anvil

    Anvil Peon

    Messages:
    31
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Just download from Gooogle simple drop-down menu based on JavaScript and change HTML and CSS code with your graphics, colors and other things. It should help you. If you know some basic HTML and CSS you will deal with this.
     
    Anvil, Mar 20, 2012 IP
  4. Jocaziggg

    Jocaziggg Greenhorn

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #4
    it can be done in flash... pm me if you want....
     
    Jocaziggg, Mar 20, 2012 IP
  5. Deluxious

    Deluxious Greenhorn

    Messages:
    32
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #5
    yeah, this would be much easier to get done in Flash or with script. A pure HTML & CSS solution might be either extremely messy or just impossible. Since those rollover graphics overlap each other you'll have to do weird padding/margin hacks, and each sub-menu item needs it's own class defined. With a little jQuery however, this would be quite possible - not sure if it would impact search engine indexing though.
     
    Deluxious, Mar 20, 2012 IP
  6. sarahk

    sarahk iTamer Staff

    Messages:
    28,839
    Likes Received:
    4,542
    Best Answers:
    123
    Trophy Points:
    665
    #6
    I can't see what the big deal is. The designer just has to give you graphics for each "level" and the class applied when you dynamically generate the menu - and the user just needs to know that only X levels can be used.
     
    sarahk, Mar 26, 2012 IP
  7. Deluxious

    Deluxious Greenhorn

    Messages:
    32
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #7
    It isn't that big a deal if you separate out the elements into different layers so the sub-menus aren't direct descendants of the main nav items - but the problem with that is you lose semantic context and some accessibility. Due to all the angles, it's not going to be very easy to have your html look like:

    
    <ol>
      <li class='main-nav-item'>
        <a href='#'>About Us</a>
        <ol>
          <li class='sub-nav-item'><a href='#'>Our mission</li>
          <li class='sub-nav-item'><a href='#'>The team</li>
          <li class='sub-nav-item'><a href='#'>Etc...</li>
        </ol>
      </li>
      <li>...</li>
    </ol>
    
    HTML:
    Not saying it isn't possible, would just be more difficult than your average drop-down menu.
     
    Deluxious, Mar 27, 2012 IP
  8. infocus1

    infocus1 Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    This crazy drop down menu. Not sure, how to plan this.
     
    infocus1, Mar 27, 2012 IP