从主屏幕加载时,我的网站没有显示新的启动画面 ( https://developers.google.com/web/updates/2015/10/splashscreen ),尽管我链接了一个清单。因此我相信,我做了一个无效的清单。
这是 index.php 代码:
<link rel="manifest" href="sharedcode/webappmanifest.json">
这是完整的 webappmanifest.json 代码:
{
"short_name": "Igel100",
"name": "Igel100",
"start_url": "./?utm_source=web_app_manifest",
"icons": [
{
"src": "/projekte/igel100/data/webappicon.png",
"sizes": "512x512",
"type": "image/png"
},
],
"background_color": "#9fa8da",
"theme_color": "#ccccff",
"display": "standalone",
"orientation": "any"
}