简体   繁体   English

如今,除了“ favicon.ico”以外,还有哪些其他图标?

[英]What other icons are there besides `favicon.ico` nowadays?

I'm not following all the latest webdev trends so I've a question about what other icons besides favicon.ico a modern website should provide? 我没有关注所有最新的webdev趋势,所以我想了解现代网站除了favicon.ico之外还应提供哪些其他图标?

My current HTML looks like this: 我当前的HTML如下所示:

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon"          href="/favicon.ico" type="image/x-icon">

My favicon.ico is 32x32 PNG file. 我的favicon.ico是32x32 PNG文件。

What other icons should I be providing for my new website? 我应该为我的新网站提供哪些其他图标? I guess there are icons for Android, OSX, Facebook (when you share your website?) and others. 我猜想有用于Android,OSX,Facebook(共享网站时)和其他图标。

Favicons in multiple sizes: 多种尺寸的图标:

<link rel="icon" sizes="16x16" href="favicon.png">
<link rel="icon" sizes="32x32" href="favicon-l.png">
<link rel="icon" sizes="64x64" href="favicon-xl.png">

Note: 16x16 and 32x32 are the most common ones; 注意:最常见的是16x1632x32 other sizes are unlikely to be used by major browsers. 其他尺寸的浏览器不太可能使用。

iOS icons : iOS图标

<link rel="apple-touch-icon" href="touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png">

Note 1: these are also used by Android . 注意1:这些也由Android使用

Note 2: use rel="apple-touch-icon-precomposed" if you don't want iOS to apply the "glass-effect" and just show your image as-is. 注意2:如果您不希望iOS应用“玻璃效果”,而仅按原样显示图片, 使用rel="apple-touch-icon-precomposed"

Microsoft Windows 8.1 Tiles Microsoft Windows 8.1磁贴

<meta name="application-name" content="My Site"/>
<meta name="msapplication-TileColor" content="#000000"/>
<meta name="msapplication-square70x70logo" content="/ms-tiny.png"/>
<meta name="msapplication-square150x150logo" content="/ms-square.png"/>
<meta name="msapplication-wide310x150logo" content="/ms-wide.png"/>
<meta name="msapplication-square310x310logo" content="/ms-large.png"/>

Note: these are also used on Windows phones. 注意:这些也用于Windows手机。

Webpage thumbnail ( used by Facebook for example) 网页缩略图(例如,Facebook使用的

<meta property="og:image" content="http://example.com/preview-100x100.png" />

See also this great article. 另请参阅这篇出色的文章。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM