我可以从本地文件中获取 .ico(图标)来显示吗

发布于 2024-11-18 05:52:15 字数 534 浏览 4 评论 0原文

我只使用 IE 对我的 Web 应用程序进行客户端测试,没有服务器 - 所以我可以测试我的 CSS/XHTML/Javascript。

当我添加行

<link rel="icon" href="favicon1.ico"/>

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

或时,

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

我没有看到选项卡中显示我的 .ico 图像。

我的 favicon1.ico 是一个 32 像素 x 32 像素(32 bpp,8 位 alpha,无调色板)的 .ico 文件,在 GIMP 中创建/保存,与我的 html 文件位于同一目录中。

非常确信 IE 此时需要一个服务器。

I am doing client side testing for my web application using IE only, there is no server - so I can test my CSS/XHTML/Javascript.

When I add the line

<link rel="icon" href="favicon1.ico"/>

or

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

or

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

I do not see my .ico image displayed in the tab.

My favicon1.ico is a 32px by 32px (32 bpp, 8-bit alpha, no pallete) .ico file created/saved in GIMP residing in the same directory as my html files.

Pretty convinced IE needs a server at this point.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴随着你 2024-11-25 05:52:15

引用OP:


您只需使用引用所有外部文件即可>相对 url。

如果您的图标文件包含在与您的页面相同的目录中...

href="MyIcon.ico"

编辑:

这是对原始帖子的完全有效的答案。然而,原始帖子已被编辑到上述答案不再有意义的程度。

编辑2:

以下是我的工作原理。

我相信有些浏览器对名称很挑剔,所以我使用 favicon.ico

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

编辑3:

引用OP: “我刚刚将 40px x 40px 保存为 .ico 文件”

这听起来根本不对。用于 Favicon 的 ICO 文件通常为 16 x 16 像素,具有可选的 32 x 32 像素桌面版本和/或可选的 48 x 48 像素 XP 版本。

这是一个用于创建合适的图标的在线工具。

Quote OP: <link rel="SHORTCUT ICON" href="d:/bi1.ico"/>


You'd simply reference all external files with relative urls.

If your icon file is contained in the same directory as your page...

href="MyIcon.ico"

EDIT:

This was a perfectly valid answer to the original posting. However, the original posting has since been edited to the point where the above answer no longer makes sense.

EDIT 2:

The following is how mine is working.

I believe that some browsers are fussy about the name so I use favicon.ico.

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

EDIT 3:

Quote OP: "I just saved a 40px by 40px as a .ico file"

This does not sound right at all. ICO files used for the Favicon are typically 16 x 16 pixels with an optional 32 x 32 pixel desktop version and/or an optional 48 x 48 pixel XP version.

Here is an online tool for creating a proper favicon.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文