1

在 IE 中,使用<META NAME="msapplication-task" CONTENT="name=TASKNAME;action-uri=ONCLICK;icon-uri=ICON" />Windows 8+ 中的 IE 9+,您可以轻松地将自定义操作图标放入固定站点的跳转列表中。有什么方法可以实现与其他浏览器相同或类似的效果吗?

关于这个话题,有没有办法在其他操作系统中实现这个效果?我主要对 Max OS 10.6+ 和 Ubuntu 10.10+ 感兴趣(也就是说,还有 Ubuntu with Unity)

4

1 回答 1

2

iOS有一些这样的。把它放在你的<head>

<!-- Hide the browser UI when pinned to the home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">

您可以在根目录中设置主屏幕图标。您将需要以下内容:

<!-- With a reflective shine -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">

<!-- Without a reflective shine -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">

HTML5 Boilerplate 建议您将图标放在根目录中,就像 favicon 一样。

于 2013-02-05T22:45:07.293 回答