我开发了一个侧边栏。但是我有一个问题,打开侧边栏所需的按钮在移动设备上不可见。如果您知道该职位,则可以单击该职位,它就会起作用。隐藏它的按钮可以正常工作。

这是网站的链接:

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;
}

最佳答案

由于元素处于固定位置,因此当您在移动设备上的屏幕变小时,它会被切断。

您要么需要调整其处理视口的方式,要么需要随屏幕调整其宽度。

关于html - 固定元素在移动设备上不可见,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32187153/

10-12 12:34