0

我添加了元信息,以便将其固定到 iOS 和 Android 主屏幕,并应作为 Web 应用程序启动。我使用这个教程来添加添加到主屏幕标注ATH,Android 图标名称上的位未显示 - 它采用页面标题而不是元标记中的短名称。如果有人遇到这个问题,请告知我在哪里可以解决它。谢谢

我的头

meta(name='apple-mobile-web-app-capable', content='yes')
meta(name='mobile-web-app-capable', content='yes')
meta(name='apple-mobile-web-app-title', content='Add to Home')
link(rel='shortcut icon', sizes='16x16', href='../images/ath-app-icon.jpg')
link(rel='shortcut icon', sizes='196x196', href='../images/ath-app-icon.jpg')
link(rel='apple-touch-icon-precomposed', href='../images/ath-app-icon.jpg')
4

1 回答 1

0

为此,您必须在您的 Manifest.Json 文件中写入您的简称

{
  "name": "Any Name",
  "short_name": "Your Short name",
  "icons": [
		{
        "src": "120x120.png",
        "type": "image/png",
        "sizes": "128x128"
      }, 
	  ],
  "start_url": "anyUrl?launcher=true",
  "scope": "/",
  "display": "standalone",
  "orientation": "portrait",
  "background_color": "#aac73c ",
  "theme_color": "#63528a"
}

于 2017-04-20T12:46:41.427 回答