2

对于 HTML 游戏,我想禁用 Chrome 中的正常缩放功能。

这个问题讨论了如何使用viewport元标记在 Android 上禁用 Chrome 中的缩放,但这似乎不适用于普通桌面 chrome。

4

1 回答 1

0

虽然这不能回答我最初的问题(我询问了 Chrome 中显示的页面),但我只是想记录一下Chromium(Chrome 背后的 OSS)似乎有一个标志来控制它是否支持视口元标记:

// Enables the use of the viewport meta tag, which allows
// pages to control aspects of their own layout. This also turns on touch-screen
// pinch gestures.
const char kEnableViewport[]                = "enable-viewport";

(来源: http ://src.chromium.org/svn/trunk/src/content/public/common/content_switches.cc )

因此,如果将游戏打包到自己的 chromium 实例中是一种选择(在我的情况下很可能),则可以通过视口元标记禁用缩放。

于 2013-03-20T02:55:13.677 回答