Three line menu? Navicon? Drawer? Menu Icon? Side Swipe? Three stripes? Hamburger? [closed]
Asked Answered
H

8

8

During a design meeting the question came up "What is the name of the component with three horizontal lines?" It's common in mobile apps and mobile web, visualizing something to swipe. Googling the subject it seems Navicon or Drawer are used often, though I also see Side Swipe and even Hamburger. Trying to arrive at a consensus...

enter image description here

enter image description here

Henleyonthames answered 5/12, 2013 at 14:16 Comment(7)
Does it need a title? If you refer to it as the three line navigation icon I'm sure most people will understand what you're talking about. If they don't, then a special name would be lost on them also.Sandal
That's a good point. My intent is to understand and list what other names/titles the component may go by and possibly draw a consensus. Personally I prefer a standard shorthand name like drawer.Henleyonthames
I also think it needs a name. Try to have a conversation about a thing that you don't know what's called? Then try that many times a day.Meingoldas
There doesn't seem to be an official name so I vote for "hamburger". It's fun and memorable so I think it would catch on easily. I was able to get my clients to use the term. They saw the resemblance right away. Now we are always talking about hamburgers.Craigcraighead
@Sandal to make a vague parallel, wouldn't it be sufficient if variables in a programming language were all anonymous or came with an obfuscated name via the blessing of some nice tool, or a name-case-randomizer...Easting
I got here from searching "proposal to name menu 3 line icon as 'menu drawer'. I completely support naming it "menu drawer". I think it's a simple, common term that fits the visual appearance as well as function perfectly! For "people that wouldn't know the reference", they will pick up on it quickly enough -- just like "lol", "facebook timeline", "tweets", "emoticon", etcRozanne
Related, see Is Apple's or Google's meaning of the three-horizontal-bar icon more popular? on User Experience Stack Exchange.Gladdie
H
0

Earliest reference has the name as Menu Button as created by Norm Cox and Xerox circa 1990...

http://vimeo.com/61556918

http://gizmodo.com/who-designed-the-iconic-hamburger-icon-1555438787

Henleyonthames answered 1/4, 2014 at 1:4 Comment(0)
M
4

I think the best candidate is "Three Horizontal Lines".

Take a look at this post they did a brief history of it's usage: http://mobile.smashingmagazine.com/2012/10/08/the-semantic-responsive-design-navicon/

Meingoldas answered 10/1, 2014 at 12:14 Comment(3)
there is a graphicdesign.stackexchange.com - it would be nice if programmers and designers would use the same name. in mine opinion it should be a consensus but designer causes would be given a slight priority.Easting
well, actually, probably ux.stackexchange.com would be even more fittingEasting
... So this question can be moved if that's ok...Meingoldas
B
1

I think it should be "THL navicon" as its abreviation to three horizontal lines and easier for spoken language. But its already known as the hamburger or drawer menu.

Breadthways answered 14/4, 2014 at 12:7 Comment(0)
S
1

Name of the three line icon to display the main menu of an andriod app is Navigation Drawer.we can use any icon for that.

Succumb answered 27/6, 2015 at 7:41 Comment(0)
H
0

Earliest reference has the name as Menu Button as created by Norm Cox and Xerox circa 1990...

http://vimeo.com/61556918

http://gizmodo.com/who-designed-the-iconic-hamburger-icon-1555438787

Henleyonthames answered 1/4, 2014 at 1:4 Comment(0)
T
0

I think the best is three Horizontal Lines with effect animation to show the menu

If we talk about web applications with css and javascript it is very easy to implement.

You can use the following jquery plugin: https://www.articlage.com/adrianillo/article/HamburgerMenu

enter image description here enter image description here

Just add the following element to your HTML code:

<div id="hamburgerMenu"></div>

And run the following javascript:

$("#hamburgerMenu").hamburgerMenu({ mainContent: 'mainContent',

         }, [
             {"id":"Brain","href":"index.html","text":"Pinky"},
             {"id":"Spongebob","href":"Spongebob.html","text":"Sponge Bob"},
             {"id":"Ghostbusters","href":"Ghostbusters.html","text":"Ghostbusters"},
             {"id":"fraggle","href":"other.html","text":"Fraggle rock"}
         ]
 );

Try a demo here: https://db.tt/FQP2dv7Y

Twitt answered 22/6, 2015 at 8:31 Comment(0)
M
0

I was wondering this myself... I didn't know so I just wound up calling it the "tri-bar" at work one day, and it seems to have stuck with my coworkers (without jest). Pronouncing it like "triangle" or "tricycle", admittedly my inspiration was the Celtic triskele (pronounced more like "miss" than "my").

Mhd answered 17/11, 2015 at 4:56 Comment(0)
T
0
<div id="lines"></div>

CSS

#lines { 
    border-bottom: 17px double black; 
    border-top: 6px solid black; 
    content:"";
    height: 5px; 
    width:30px;
}

result:

three lines css menu

Tedtedd answered 4/8, 2016 at 2:19 Comment(0)
S
0

Call it the ... Collapsed Menu.

Simple & to the point; easily understood by admins or users.

It is what it is!

;-)

Smallscale answered 24/9, 2018 at 0:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.