我开发了一个侧边栏。但是我有一个问题,即打开侧边栏所需的按钮在移动设备上是不可见的。如果你知道这个位置,你可以点击它并且它有效。隐藏它的按钮工作正常。
以下是该网站的链接:
https://gdi.ethz.ch/jenkins/pages/current.html
这里有相关的html:
<div id="wrapper" class="container container-fluid col-md-12">
<header><nav id="sidebar-wrapper">
<a href="#menu-toggle" id="menu-toggle"></a>
<ul class="sidebar-nav">
Some menue
</ul>
</nav>
</header>
<div id="main">
the site content
</div>
<footer></footer>
</div>
和css代码:
#menu-toggle {
position: fixed;
overflow:hidden;
z-index: 1100;
background-color: #009bf0;
color: white;
top: 0;
left: 249px;
padding-left: 10px;
padding-top: 3px;
width: 40px;
height: 40px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled #menu-toggle {
left: 0px;
}
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
z-index: 1000;
position: fixed;
left: 250px;
width: 0;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: #009bf0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
答案 0 :(得分:0)
问题是<a href="#menu-toggle" id="menu-toggle"></a>
位于固定#sidebar-wrapper
内。这导致了chrome mobile的问题。通过将#menu-toggle
移到#sidebar-wrapper
之外,一切正常。