如何修改手机的bootstrap菜单,使其类似于facebook手机菜单?

时间:2013-02-06 05:48:26

标签: facebook mobile twitter-bootstrap

我们正在使用twitter bootstrap创建一个移动网站。我们正在使用Twitter响应式菜单。

当我们在移动设备中查看菜单时,它看起来像

在正常模式下

enter image description here

扩展菜单时。

enter image description here

我们可以让它看起来像facebook手机样式菜单,即菜单不是从上到下,它应该从左到右?

1 个答案:

答案 0 :(得分:0)

菜单折叠添加了带转换的css类(从0到auto的高度)。你可以覆盖这个css类。

示例:

.nav-collapse, .nav-collapse.collapse{
    height: 0;
    width: 0px;
    overflow: hidden;
    position: relative;
    left:100%;
    -webkit-transition: all 2s ease 0s;
     -moz-transition: all 2s ease 0s;
       -o-transition: all 2s ease 0s;
          transition: all 2s ease 0s;
}
.collapse.in {
    left:0;
    width: 100%;
    height: auto;
}   

此代码仅说明。此代码打破了其他导航条代码。请参阅(在小屏幕中打开):http://bootply.com/74938