显示“IE7” Mobile Safari 上网站的版本
我试图在网站上使用此代码: 邻近效应
在所有受支持的浏览器中效果很好,并且可以回退IE7/8 上的缩略图网格。可下载的代码看起来像是使用 IE 的条件注释。
问题是,移动版 Safari 通过了检查并显示完整版本,但 iPad 上当然没有发生翻转事件。所以什么也没有发生。
我很乐意向移动设备展示网格 (IE7) 版本,以及现代桌面浏览器的完整版本。您建议如何进行移动测试?
I was trying to use this code on a site:
Proximity Effect
Works great in all supported browsers, and falls back to a grid of thumbnails on IE7/8. The downloadable code looks like they are using conditional comments for IE.
The problem is, mobile Safari passes the checks and shows the full version, but of course the iPad had no roll over event. So nothing happens.
I'd be happy to show the grid (IE7) version to mobile devices, and the full version for modern desktop browsers. How would you recommend putting in the test for mobile?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一些 JavaScript 来检测移动设备和浏览器。
此外,如果您确切知道哪些元素或脚本在移动 Safari 中不起作用,您可以对其进行测试,而不是检查特定的浏览器。
注意:Safari 的 userAgent 将包含“Safari”,但不包含“Chrome”,而 Chrome 将包含两者。
You could use some JavaScript to detect mobile device and browser.
Also, if you know exactly what element or script is not working in mobile Safari, you could test for that instead of checking a specific browser.
Note: userAgent for Safari will include "Safari", but not "Chrome", when Chrome will include both.