2

如何在移动 facebook 应用程序或 Messenger 中获取/设置即时游戏的屏幕分辨率?我尝试通过“window.screen.width”和“window.innerWidth”得到它,它返回了 360 像素(但我在 Chrome 浏览器中有 980)。我没有使用任何可以限制分辨率的元标记。

4

1 回答 1

1

您需要使用window.innerWidthwindow.innerHeight

您需要将这些乘以window.devicePixelRatio

所以:

PixelW = window.innerWidth *  window.devicePixelRatio;
PixelH = window.innerHeight *  window.devicePixelRatio;
于 2018-02-28T17:03:20.177 回答