HTML 中网站的 Apple Touch 图标
htmljavascriptprogramming scripts
对于 iPhone 或 iPad 上的网页图标,请使用 Apple Touch Icon 或 apple-touch-icon.png 文件。当有人将您的网页添加为书签时,将使用此图标。
对于具有不同设备分辨率(如 iPhone 或 iPad)的多个图标,请按如下方式向每个链接元素添加 sizes 属性 −
<link rel = "apple-touch-icon" href = "touch-icon-iphone.png">
设置大小
<link rel = "apple-touch-icon" sizes = "160x160" href = "touch-icon-ipad.png"> <link rel = "apple-touch-icon" sizes = "170x170" href = "touch-icon-iphone-retina.png"> <link rel = "apple-touch-icon" sizes = "180x180" href = "touch-icon-ipad-retina.png">
使用适合设备尺寸的图标。