我正在开发一个 web 应用程序(不是一个包含有趣文本页面的网站),它有一个非常不同的触摸界面(当你点击时你的手指会隐藏屏幕)和鼠标(严重依赖悬停预览)。如何检测我的用户没有鼠标来向他展示正确的界面?我打算为同时使用鼠标和触摸的人(如某些笔记本电脑)留下一个开关。
浏览器中的触摸事件功能实际上并不意味着用户正在使用触摸设备(例如,Modernizr 没有削减它)。如果设备有鼠标,正确回答问题的代码应该返回 false,否则返回 true。对于带有鼠标和触摸的设备,它应该返回 false(不仅仅是触摸)
附带说明一下,我的触摸界面可能也适用于仅使用键盘的设备,因此我希望检测的更多是缺少鼠标。
为了使需求更加明确,这是我希望实现的 API:
// Level 1
// The current answers provide a way to do that.
hasTouch();
// Returns true if a mouse is expected.
// Note: as explained by the OP, this is not !hasTouch()
// I don't think we have this in the answers already, that why I offer a bounty
hasMouse();
// Level 2 (I don't think it's possible, but maybe I'm wrong, so why not asking)
// callback is called when the result of "hasTouch()" changes.
listenHasTouchChanges(callback);
// callback is called when the result of "hasMouse()" changes.
listenHasMouseChanges(callback);