Safari Mobile full screen

2020-05-27 05:24发布

I'm trying to set the full screen mode on my iPhone Web App, I have read the Apple's documentation on apple-mobile-web-app-capable meta tag, but it doesn't work, can you help me? Thanks

2条回答
狗以群分
2楼-- · 2020-05-27 05:45

You can also add a javascript function :

<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
查看更多
唯我独甜
3楼-- · 2020-05-27 05:54
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

Make sure you do what Bala Clark mentioned

Its worth mentioning that these tags only work when the app is saved the home screen and launched from there

查看更多
登录 后发表回答