# iOS Safari Web App 配置 ## 全屏模式 手动开启页面全屏模式: ```html ``` > **Tips:** 可使用 JS 的 `window.navigator.standalone` 属性来查看是否开启了全屏模式。 ## 状态栏 全屏模式下可设置状态栏样式: ```html ``` ## Web Clips Web Clips 图标配置(必须 PNG 格式): ```html ``` Web Clips 图标下方标题配置: ```html App Name ``` ## 链接应用 使用链接调用系统应用: ```html Email Phone Call Launch Messages App New SMS Message FaceTime Video Call FaceTime Video Call FaceTime Audio Call FaceTime Audio Call ``` > **Tips:** > > iOS Safari 会自动识别电话号码和邮件地址字符并添加链接,可手动关闭: > > ```html > > > > > > ``` ## 参考文献 * [Supported Meta Tags](https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html) * [Configuring Web Applications](https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html) * [App Icon](https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/app-icon/) * [About Apple URL Schemes](https://developer.apple.com/library/archive/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007899-CH1-SW1)