gpt4 book ai didi

Javascript:始终显示 Chrome 地址栏

转载 作者:搜寻专家 更新时间:2023-11-01 04:29:56 25 4
gpt4 key购买 nike

如何使用 Javascript 在移动设备上的 Chrome 中启用“始终显示”地址栏?
换句话说,不要在用户向下滚动时隐藏。

最佳答案

您可以创建一个 div,将高度设置为 100% 并使用 overflow-y:auto;

如果您复制此代码并将其粘贴到您的项目中,您会发现这就是您要查找的内容。

请谨慎使用,我个人喜欢 chrome 隐藏导航栏。

例子:

/* You NEED to set the container height */
html, body {
height:100%;
}

/* Then override the scrollbar by a custom scrollable element: */
.customnavigation {
height:100%;
overflow-y:auto;
}
<div class="customnavigation">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/150x150">
</div>

关于Javascript:始终显示 Chrome 地址栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38969432/

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