奇怪的scrollTop()错误(在某些浏览器中)
我在 Safari 中遇到了一些非常奇怪的 scrollTop() 错误。
这里是:http://miceclub.ru/(地图上的场地列表)。
我正在使用 jquery scrollTop() 函数和鼠标滚轮插件。
我使用: $('.groundsListElements').scrollTop(currScrollTop);
我已经检查过图表(X 上的 currScrollTop 和 Y 上的时间) - 没关系..
有人遇到同样的问题吗?
这是问题视频。
I've some really strange bug with scrollTop() in Safari.
Here it is: http://miceclub.ru/ (grounds list on the map).
I'm using jquery scrollTop() function and mousewheel plugin.
I use: $('.groundsListElements').scrollTop(currScrollTop);
I've checked graph (currScrollTop on X and time on Y) - it's ok..
Has anybody had same problems?
Here is a video of the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题出在鼠标滚轮插件上。当我在 Safari(Windows 中)和 Chrome 中运行它时,速度永远不会超过 1 (demo )。我以前从未注意到这个插件有这个问题。
因此,也许在您的代码中,如果该值恰好等于 1,则将该值乘以一个数字,这样 Safari 就会更快地滚动窗口。
更新:实际上,github 存储库中存在关于速度关闭的一些问题。
I think the problem is the mousewheel plugin. When I run it in Safari (in Windows) and Chrome, the velocity never goes above 1 (demo). I never noticed this problem with this plugin before.
So maybe in your code, multiple the value by a number if it is exactly equal to 1, that way Safari will scroll the window a bit faster.
Update: Actually there are a few issues in the github repository about the velocity being off.