2016-09-09 89 views
0

我使用此javascript部分來隱藏或沒有滾動條時,我的模式是打開或沒有,但iPhone和iPad不會隱藏我的滾動?問題來自相對位置?溢出不適用於iPhone和iPad

這裏是我的javascript代碼

function openNav() { 
document.getElementById("myNav").style.cssText = "height:100%"; 
document.body.style.overflow = "hidden"; 
} 
function closeNav() { 
document.getElementById("myNav").style.cssText = "height:0%"; 
document.body.style.overflow = "scroll"; 
} 

回答

0

解決我的問題的模式,我需要在我這裏的CSS文件

*, *:after, *:before { 

添加

-webkit-overflow-scrolling:touch 

但問題仍然存在,當我嘗試打開我的全屏菜單!

相關問題