触摸设备上的翻转
我的团队正在使用 Edge 和 JavaScript 开发 HTML5 Web 应用程序。我们还需要支持触摸设备,但我们遇到了一个问题:
如何在触摸设备上模拟鼠标悬停或鼠标悬停事件?
欢迎任何想法,不一定是代码示例。
My team is developing a HTML5 web application with Edge and JavaScript. We need to support touch devices also, but we've bumped into a problem:
How can we simulate a rollover or mouse-over event on a touch device?
Any idea is welcome, not necessarily a code example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个人体工程学问题,而不是技术问题。
简短的回答是:你不能:)
简而言之,标准设备上的所有翻转操作都必须通过单击操作来重新考虑。
例如,触摸屏设备上的翻转顶部导航菜单必须通过单击菜单而不是翻转操作来工作。
至少这是我们为多支持 Web 应用程序所做的......
This is an ergonomic problem, not a technical one.
And the short answer is : you cant :)
Put simply, all the rollover actions on a standard device must be rethink with click actions.
For exemple, a rollover top navigation menu on a touch screen device must work with clicks on the menu instead of roll over actions.
At least this is what we do for multi-support web applications...