更改Blazor脱机chrome窗口样式

问题描述 投票:1回答:1

我们是否可以更改托管Blazor脱机应用程序的窗口的样式,例如更改标题栏颜色或设置图标或更改默认窗口背景色。

progressive-web-apps blazor
1个回答
0
投票

是-在manifest.json中-参见https://pwa-workshop.js.org/1-manifest/#manifest-fields

示例:

{
  "name": "myapp",
  "short_name": "myapp",
  "start_url": "./",
  "display": "standalone",
  "background_color": "#B4ECF9",
  "theme_color": "#F00BAA",
  "icons": [
    {
      "src": "/android-chrome-512x512.png",
      "sizes": "512x512",
      "type": "image/png"
    },
    {
      "src": "/android-chrome-192x192.png",
      "sizes": "192x192",
      "type": "image/png"
    }
  ]
}
© www.soinside.com 2019 - 2024. All rights reserved.