mozilla 和 webkit 触摸事件有什么区别?
过去几天我一直在阅读有关触摸设备和事件的内容。
我见过很多区分 webkit 和 mozilla 触摸事件的脚本?
他们之间的主要区别是什么,因为我无法从他们的网站上找到任何信息。
I've been reading in the last couple of days about touch devices and events.
I've seen lots of scripts that make difference between webkit and mozilla touch events?
What is the main difference between them, as I couldn't find out anything from their websites.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为主要区别是
gesturechange
事件与touchchange
事件例如,Android 使用
touchstarst
,而 iOS 使用gesturestart
来检测“手指在屏幕上”。这篇博客文章描述了这些差异。
我会使用像 Sencha 或 jQuery Mobile 这样的框架来解决所有 x 设备问题。
I think the main difference is
gesturechange
events vs.touchchange
eventsFor example Android uses
touchstarst
while iOS usesgesturestart
for detecting "finger on screen".This blog post describe these differences.
I would use a framework like Sencha or jQuery Mobile to solve all x-device issues.