我正在开发一个网络应用程序(不是一个有趣的文本页面的网站) ,它有一个非常不同的触摸界面(点击时你的手指会隐藏屏幕)和鼠标(主要依赖于悬停预览)。 如何检测用户是否没有鼠标给他显示正确的界面?我计划留一个开关给既有鼠标又有触摸功能的人(比如一些笔记本电脑)。
浏览器中的触摸事件功能实际上并不意味着用户正在使用触摸设备(例如,Modern izr 并没有切断它)。如果设备有鼠标,正确回答问题的代码应该返回 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);