ZK 提供触摸事件处理吗?
我打算针对平板电脑优化我的 ZK 桌面应用程序。 所以这就是为什么我想知道ZK/ZK Mobile是否提供触摸事件处理?我的意思是就像 Sencha touch 或 JQuery Mobile 所做的那样。 我用谷歌搜索了很多但找不到任何东西。只是想确定一下,所以我才在这里问。
I intend to optimize my ZK desktop application for tablet computer.
So that's why I want to know if ZK/ZK Mobile offers touch event handling? I mean just like Sencha touch or JQuery Mobile does.
I googled a lot but couldn't find anything. Just want to be sure so that's why I ask here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们将鼠标事件转换为触摸事件。
- 鼠标按下>>触摸开始
- 鼠标移动>>触摸移动
- 鼠标向上>>触摸端
We do the transfer from the mouse events into the touch events.
- mousedown >> touch start
- mousemove >> touch move
- mouseup >> touch end