我添加了元信息,因此应将其固定到iOS和Android主屏幕,并应作为网络应用启动。 我使用这一个教程添加添加到主屏幕标注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')
答案 0 :(得分:0)
为此你必须在你的Manifest.Json文件中写下你的短名称short_name =“你的短名称”然后当你添加到主屏幕时它会出现
{
"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"
}