如何为移动网络应用程序提供安装屏幕?

Lat*_*vas 5 mobile web-applications ios

forecast.io的相似之处 - 如果您在手机上访问他们的网站.这显示:

forecast.io

将其添加到主屏幕后,应用程序的其余部分即可使用.

小智 6

window.navigator.standalone
Run Code Online (Sandbox Code Playgroud)

会导致true如果你从主屏幕或启动false页面是否在浏览器中打开.Apple在他们的开发人员文档中非常好地记录,并且与OS 2.1及更高版本一起使用.

例如:

if (window.navigator.standalone) {
    // fullscreen mode

}
Run Code Online (Sandbox Code Playgroud)