gpt4 book ai didi

javascript - 侧边菜单滚动在 safari 上滞后(ios)

转载 作者:行者123 更新时间:2023-11-28 12:31:41 25 4
gpt4 key购买 nike

我有一个移动网站,它有一个简单的带滚动的侧边菜单栏,当在 safari 上滚动菜单时它滞后很多(滚动困难)。

这是 html:

<body>
<div id="menu_background" onclick="toggleMenu()"></div>
<div id="menu">
<ul>
<li>
<div>item 1</div>
</li>
//other items goes here
</ul>
</div>
<div id="global_container">
//some content goes here
</div>
</body>

这是CSS:

#menu
{

position: absolute;
top: 0px;
bottom: 0px;
z-index: 100;
overflow: hidden;
display:none;
width: 0%;
padding: 1%;

}

和 javascript :

var menuShown = false;
function toggleMenu(){
var menu = document.getElementById("menu");
var menuBackground = document.getElementById("menu_background");
var globalContainer = document.getElementById("global_container");
if(!menuShown){
menuShown = true;
menuBackground.style.visibility = "visible" ;
menu.style.width="60%";
menu.style.display="block";
menu.style.overflowY="auto";
globalContainer.style.position="fixed";
globalContainer.style.right="62%";
}
else{
menuShown = false;
menuBackground.style.visibility = "hidden" ;
menu.style.width="0%";
menu.style.display="none";
menu.style.overflowY="hidden";
globalContainer.style.position="static";
}
}

我没有包括其余的 html,其中有一个带有触发 toggleMenu() javascript 函数的 onclick 操作的菜单按钮。

我也不想使用现成的 jQuery 插件或其他解决方案。

有什么建议吗?

最佳答案

在 css 中使用以下内容解决:

而不是在 css #menu 选择器中使用以下内容

overflow: hidden;

改用这个

overflow-y: scroll;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;

关于javascript - 侧边菜单滚动在 safari 上滞后(ios),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18199257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com