0
雖然點擊十字按鈕導航欄是可見的,但在小屏幕導航欄不是1000px
爲html overflow is hidden
。如何顯示導航欄的全高不移除溢出:隱藏的圖像部分 這是我的代碼: 在小屏幕上顯示全導航欄
$('#start').click(function(){
$('#nav').show();
$('img').hide();
})
html{
height:100%;
overflow:hidden;
}
body{
height:100%;
}
#nav{
height:1000px;
width:100%;
background:#454545;
display:none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<header>
<div id="start"><h3>☓</h3>
<img src="http://wallpapercave.com/wp/E0z7vJl.jpg">
</header>
<div id="nav"></div>
你能解釋爲什麼你選擇'height:1000px'嗎? – Jesse