Tag: apple touch icon

Favicons – 最佳实践

我试图让我的脑袋周围所有这些不同的大小和格式,需要Favicons,触摸图标,现在平铺图标也是如此。 我读过这篇文章: http : //www.jonathantneal.com/blog/understand-the-favicon,但我仍然有点朦胧,究竟是什么使用,看起来相当不错,在所有设备和浏览器> = IE8 。 我想我应该创build以下内容: ICO favicon.ico(32×32) PNG favicon.png(96×96) 平铺图标 tileicon.png(144×144) 苹果触摸图标 apple-touch-icon-precomposed.png(152×152) 基于这个https://github.com/h5bp/html5-boilerplate/issues/1367 …然后使用这个代码来服务他们? <link rel="apple-touch-icon" href="path/to/touchicon.png"> <link rel="icon" href="path/to/favicon.png"> <!–[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]–> <!– or, set /favicon.ico for IE10 win –> <meta name="msapplication-TileColor" content="#D83434"> <meta name="msapplication-TileImage" content="path/to/tileicon.png"> 我错过了什么? 我不清楚这是否会覆盖IE 10?