我正在用 HTML 制作一个应用程序,我需要制作一个应用程序图标。如何实现图标? [关闭]
Posted
技术标签:
【中文标题】我正在用 HTML 制作一个应用程序,我需要制作一个应用程序图标。如何实现图标? [关闭]【英文标题】:I'm making an app with HTML and I need to make an app icon. How can I implement the icon? [closed] 【发布时间】:2020-11-23 23:58:23 【问题描述】:我想知道它是 favicon 还是 meta,请帮忙。
提前致谢。
【问题讨论】:
w3.org/2005/10/howto-favicon 【参考方案1】:您需要使用一系列元标记,具体取决于您是尝试在网络浏览器上查看应用还是作为操作系统中的应用图标。以下是我通常包含在 Web 项目中的版本。它们通常可以满足我的大部分需求,但根据您的目标平台,您可以提供大量图标。
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://yourwebiste.com/images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://yourwebiste.com/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://yourwebiste.com/images/favicon-16x16.png"
/>
【讨论】:
以上是关于我正在用 HTML 制作一个应用程序,我需要制作一个应用程序图标。如何实现图标? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章