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...
Earliest reference has the name as Menu Button as created by Norm Cox and Xerox circa 1990...
http://gizmodo.com/who-designed-the-iconic-hamburger-icon-1555438787
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/
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.
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.
Earliest reference has the name as Menu Button as created by Norm Cox and Xerox circa 1990...
http://gizmodo.com/who-designed-the-iconic-hamburger-icon-1555438787
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
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
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").
<div id="lines"></div>
CSS
#lines {
border-bottom: 17px double black;
border-top: 6px solid black;
content:"";
height: 5px;
width:30px;
}
result:
Call it the ... Collapsed Menu.
Simple & to the point; easily understood by admins or users.
It is what it is!
;-)
© 2022 - 2024 — McMap. All rights reserved.