iOS5上的滚动和触摸事件
我有一个推文列表,您可以使用 -webkit-overflow-scrolling:touch
滚动它们。每次您点击推文时,它都会将其编号记录在屏幕顶部的部分中。到目前为止,一切都很好。
问题是:当我启动滚动并尝试停止正在进行的滚动时,我不想将该点击视为“真正的”点击。该点击应该只是停止当前滚动,但不应该记录任何信息。
您可以通过这个简单示例在 iPhone 或模拟器上自行尝试。这是显示该错误的快速截屏。
我希望我说得足够清楚!
谢谢, 本
I have a list of tweets that you can scroll with -webkit-overflow-scrolling:touch
. Each time you tap on tweet, it logs its number in a section at the top of the screen. So far, so good.
The problem is: when I launch a scroll and I try then to stop the ongoing scroll, I don't want to consider that tap as a "real" tap. That tap should just stop the current scroll but it shouldn't log any info.
You can try it by yourself on the iPhone or the simulator with this simple example. Here's a quick screencast showing the bug.
I hope I'm being clear enough!
Thanks,
Ben
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的办法是在 touchStart 中创建一个变量,然后在 touchEnd 中检查它,并检查 x/y 位置的变化。如果它们没有移动(超过 5 像素),则这是“点击”而不是“滚动”。
Your best bet is to create a variable in touchStart, then check for it in touchEnd and also check the change in x/y positions. If they haven't moved (more than say, 5px), it is a "tap" and not a "scroll".