了解用户显示器的宽高比

发布于 2024-10-09 11:53:58 字数 102 浏览 2 评论 0原文

作为一名网页开发人员,我想知道是否有任何方法可以知道用户显示器的宽高比(使用 PC 或 Mac 的用户)。我想根据屏幕尺寸和宽高比将不同的页面(就其页面布局而言)转发给不同的用户。这可能吗?

as a webpage developer i would like to know if there is any way i can know the aspect ratio of users monitor(those who are using a PC or a Mac). i want to forward different pages(in terms of their page layout) to different users based on their screen size and aspect ratio. is this possible ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一向站在原地 2024-10-16 11:53:58

为什么不检索他们的桌面大小并自己​​找到比例?

var ratio = screen.width / screen.height;
if (ratio == (4/3)) {
  // 4:3 ratio
} else if (ratio == (3/2)) {
  // 3:2
} else if (ration == (16/9)) {
  // 16:9
} /* etc. */

Why not retrieve their desktop size and find the ratio yourself?

var ratio = screen.width / screen.height;
if (ratio == (4/3)) {
  // 4:3 ratio
} else if (ratio == (3/2)) {
  // 3:2
} else if (ration == (16/9)) {
  // 16:9
} /* etc. */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文