gpt4 book ai didi

html - 带有 HTML 表格的 iOS 滚动惯性和滚动条

转载 作者:太空宇宙 更新时间:2023-11-04 13:06:19 25 4
gpt4 key购买 nike

我制作了一个 HTML 表格,其中有一个固定的左列(该代码是 SO 上另一篇文章的简化版本)。当我在 iOS 模拟器上查看时,表格的右半部分正确滚动,但是,它不显示滚动条,并且不随惯性滚动。

表格示例:http://jsfiddle.net/jakechasan/94aP4/

基本代码如下:

HTML:

<div id="tableContainer">
<table>
<tbody>
<tr>
<td class="leftColumn">Row 1</td>
<td>efhiubcebucefbuiceguceuceiuceuceu0v8cev8ceserybewqbyuqw0uqr0</td>
</tr>
</tbody>
</table>
</div>

CSS:

    #tableContainer {
width: 200px;
overflow-x:scroll;
margin-left:5em;
overflow-y:visible;
padding-bottom:1px;
background-color: yellow;
}
table {
border-collapse:separate;
border-top: 3px solid grey;
}
td {
margin:0;
border:3px solid grey;
border-top-width:0px;
white-space:nowrap;
}
.leftColumn {
position:absolute;
width:5em;
left:0;
top:auto;
border-right: 0px none black;
border-top-width:3px;
/*only relevant for first row*/
margin-top:-3px;
/*compensate for top border*/
}

有谁知道如何激活惯性滚动,并显示滚动条?

最佳答案

我通过以下方式解决了这个问题:

-webkit-overflow-scrolling: touch; //adding this line will enable inertial scrolling

来源:http://cooshtee.com/blog/2012/11/add-inertial-scrolling-to-a-fixed-height-div-in-ios/

关于html - 带有 HTML 表格的 iOS 滚动惯性和滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25109479/

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