2
當我在我的web應用程序中使用manifest.json文件並在Android版Chrome瀏覽器中「添加到主屏幕」時,它會以全屏模式加載(很棒),但也會以縱向方向鎖定(不太好)。如何在使用manifest.json時允許方向旋轉?
我想加載全屏,但仍然允許方向旋轉。這可能嗎?
{
"name": "MyApp",
"icons": [
{
"src": "launcher-icon-0-75x.png",
"sizes": "36x36",
"type": "image/png",
"density": 0.75
}
],
"start_url": "/home",
"display": "standalone",
"orientation": "natural" // I have tried natural, any, leaving this property out altogether without success
}
據boyofgreen,你應該能夠提供的許多orientation options之一。