这是什么类型的菜单栏?

发布于 2024-07-12 02:21:08 字数 318 浏览 5 评论 0原文

我将在一个网站中构建一个 CSS 菜单栏,就像 http://www.mightyleaftea.com 上的网站一样

我听说过下拉菜单,但 mightleaftea.com 上的菜单类型是什么? 哦,最近 http://www.whitehouse.gov/

这是与编程相关的。 我必须建立菜单......

I'm going to be building a CSS menu bar into a site much like the one at http://www.mightyleaftea.com

I've heard of dropdown menus, but what is the type of menu at mightleaftea.com called?
Oh, and more recently http://www.whitehouse.gov/

This is programming related. I have to build the menu...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

仅一夜美梦 2024-07-19 02:21:08

对我来说,它看起来像是一个常规的分层下拉菜单。

试试这篇alistapart 下拉列表文章

It looks like a regular hierarchical dropdown menu to me.

Try this alistapart dropdowns article.

等待我真够勒 2024-07-19 02:21:08

它看起来像某种吸盘鱼

It's look like some kind of suckerfish.

长安忆 2024-07-19 02:21:08

看起来这只是一个简单的 DHTML 菜单。

基本上,他们所做的就是当您将鼠标悬停在链接上时显示菜单 div 的设置。

像这样:

document.getElementById('menu_div').style.display = 'block';

然后在鼠标移出时你会得到

document.getElementById('menu_div').style.display = 'none';

It looks like it's just a simple DHTML menu.

Basically all their doing is display setting of them menu div when you hover over the link.

something like:

document.getElementById('menu_div').style.display = 'block';

then on mouse out you would have

document.getElementById('menu_div').style.display = 'none';
メ斷腸人バ 2024-07-19 02:21:08

它看起来像一个使用 javascript 的下拉菜单。

It looks like a dropdown menu using javascript.

满栀 2024-07-19 02:21:08

我仍然将其称为下拉菜单。 碰巧下拉部分的内部内容比典型的 html 链接列表要多。

I would still call it a drop down menu. It just so happens that the drop-down part has more going on inside than a typical html list of links.

醉态萌生 2024-07-19 02:21:08

超级菜单或超级下拉菜单

Mega Menu or Mega Drop Down Menu

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文