在這些演示中,啓動畫面上有徽標。徽標未出現在漸進式網頁的啓動畫面上
https://addyosmani.com/blog/getting-started-with-progressive-web-apps/
我不知道我在我的清單做錯了 - 我有一個圖標,但它沒有顯示我的啓動畫面了。
我的清單看起來是這樣的:
{
"short_name": "Weather Service",
"name": "Weather Service",
"icons": [
{
"src": "logo.png",
"sizes": "144x144",
"type": "image/png"
}
],
"start_url": "index.html",
"display": "standalone",
"orientation": "portrait",
"background_color": "#FAFAFA",
"theme_color": "#512DA8"
}
我需要超過1個圖像爲它在啓動屏幕上出現?
它可能有一些做與您放置圖像文件的確切路徑/目錄。路徑是否正確? – noogui
將logo.png作爲圖標正確讀取(Web應用程序圖標 - 添加到主屏幕時),但不會顯示在啓動屏幕上。路徑是正確的。 –
您的清單上只能有一個徽標,例如: https://incredibleweb.github.io/samples/web-application-manifest/manifest.json 添加到HomeScreen後,效果很好。我建議檢查圖像路徑,大小和MIME類型。你有鏈接嗎? –