-6ren">
gpt4 book ai didi

html - 隐藏浏览器滚动条

转载 作者:太空宇宙 更新时间:2023-11-03 19:30:55 26 4
gpt4 key购买 nike

我只是在我的 data-role="content" 中使用插件 iscroll,但我的整个页面中出现了一个巨大的滚动条: scrollbar

我已经尝试过在 SO 中找到的一些解决方案,例如:

  1. > pilsetnieks's answer
  2. > Alexander Prokofyev's answer
  3. > jao's answer
  4. > Mr_Green's answer

但没有效果。

我检查这个website也是,但也不走运。

你能帮帮我吗?

我的 HTML:

<div data-role="content" data-theme="c">
<div id="Container"></div>
<div id="Treelist">
<div id="scroller">
<ul id="Listview" ></ul>
</div>
</div>
</div>

我的CSS

html, body {
height: 100%;
width: 100%;
margin: 0;
overflow: hidden;
}

#Treelist {
position:relative;
z-index:1;
top:0;
bottom:0;
left:0;
width:100%;
overflow: hidden;
/* Prevent native touch events on Windows */
-ms-touch-action: none;
/* Prevent the callout on tap-hold and text selection */
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
/* Prevent text resize on orientation change, useful for web-apps */
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
-o-text-size-adjust: none;
text-size-adjust: none;
}

#scroller {
position:relative; z-index:1;
/* Prevent elements to be highlighted on tap */
-webkit-tap-highlight-color: rgba(0,0,0,0);
/* Put the scroller into the HW Compositing layer right from the start */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
}


#Treelist ul {
position:relative;
list-style:none;
padding:0;
margin:0;
width:100%;
text-align:left;
}

#Treelist li {
padding:0 10px;
height:150px;
/* line-height:40px; */
border-bottom:1px solid #ccc;
border-top:1px solid #fff;
background-color:#fafafa;
font-size:14px;
}

最佳答案

您可以使用它来隐藏滚动条:

#scroller::-webkit-scrollbar {
display: none;
}

#scroller {
-ms-overflow-style: none;
}

只需在不同的浏览器中查看它,我确定它在 Safari、IE 和 Chrome 中都能正常工作

关于html - 隐藏浏览器滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30508073/

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