Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Foundation 6 的画布外创建子菜单?
我找到了这个方便的构建块,但它在 LHS 画布菜单中没有子菜单。
我想要一个像这样的滑入式子菜单(这是 Foundation 5)。
我相信您正在寻找Foundation 6 的Drilldown 菜单。请参阅下面的链接和页面中的代码片段。
<ul class="vertical menu" data-drilldown> <li> <a href="#">Item 1</a> <ul class="vertical menu"> <li><a href="#">Item 1A</a></li> <!-- ... --> </ul> </li> <li><a href="#">Item 2</a></li> </ul>
http://foundation.zurb.com/sites/docs/drilldown-menu.html