gpt4 book ai didi

html - 在表格行上滚动不平滑 - Windows Phone

转载 作者:行者123 更新时间:2023-11-28 08:44:48 34 4
gpt4 key购买 nike

我正在将混合应用程序从 Android 移植到 Windows-Phone-8.x。

我的 WP 应用程序在某些页面上以不稳定的方式滚动,不像我的 android 版本那样流畅。

我只是在使用简单的 td 对象。

如何让 windows-phone 也能流畅滚动?

我正在使用 html5、phonegap、jquery、jqm。

这是我的CSS:

td {
text-align: left;
width: 100%;
background: #D3DFEA;
}

我不想使用外部库。

最佳答案

在 Compass 中,我使用以下 mixin 在平板电脑/手机上启用平滑滚动。不确定 Windows Phone,但我认为它是类似的东西。

@mixin overflow-scrolling($x: hidden, $y: auto) {
-webkit-overflow-scrolling: touch;
overflow-x: $x;
overflow-y: $y;
}

正在关注 this answer您可以创建自己的前缀组合。我没办法测试这个 atm。

所以尝试添加:

-ms-scroll-chaining: none;
-ms-touch-action: pan-y; // depending on direction
-ms-overflow-style: -ms-autohiding-scrollbar;

让我知道它是否有效;)

关于html - 在表格行上滚动不平滑 - Windows Phone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27639074/

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