很多帖子都是這樣的,但並不完全適合我的情況。我的頁面的靈活尺寸設置爲100%寬度和100%高度,因此典型的加載滾動功能不起作用。任何想法或其他解決方案?隱藏100%身高的iPhone地址欄
謝謝!
CSS:
* {
margin:0;
padding:0;
}
html, body {
width:100%;
height:100%;
min-width:960px;
overflow:hidden;
}
的Javascript:
/mobile/i.test(navigator.userAgent) && !pageYOffset && !location.hash && setTimeout(function() {
window.scrollTo(0, 1);
}, 1000);
101%會使用scrollTo嗎? – Jess 2014-03-04 05:47:09
@Jess可能不是,但現在我們可以選擇100VH或minimal-ui – technopeasant 2014-03-04 18:29:04