如何以编程方式生成空白图标?

发布于 2024-07-24 09:02:49 字数 120 浏览 9 评论 0原文

我的网站上没有 favicon,因此有大量失败的日志条目,我决定重写 favicon.ico 获取请求到一个页面,该页面将生成空白文件并将其返回到浏览器?

你觉得怎么样,可能吗? 你能帮我一下怎么做吗?

I have no favicon on my web site so there are numerous of failed log entry and I decided to rewrite favicon.ico get request to a page that will generate blank file and return it to a browser?

How do you think, is it possible? Could you please help me a bit how to do that?

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

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

发布评论

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

评论(6

旧时模样 2024-07-31 09:02:49

如果您不想创建物理文件,我建议

<link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" />

在头部

添加Source http://davidwalsh。名称/空白图标

If you don't want to create a physical file, I would suggest adding

<link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" />

in the head section

Source http://davidwalsh.name/blank-favicon

不气馁 2024-07-31 09:02:49

如果你真的希望它是空白的,我会生成一个空白文件并将其放在那里。 生成它似乎有点矫枉过正/不必要。

If you really want it to be blank, I would generate a blank file and place it there. Generating it seems overkill/unnecessary.

我恋#小黄人 2024-07-31 09:02:49

我正在使用

<link rel="icon" href="data:image/x-icon;base64,AA">

我在这里写的一篇关于它的文章 https://fibo. github.io/2021/02/empty-favicon-trick/

I am using just

<link rel="icon" href="data:image/x-icon;base64,AA">

I wrote an article about it here https://fibo.github.io/2021/02/empty-favicon-trick/

孤独患者 2024-07-31 09:02:49

您需要将一个白色的 16x16 .ico 文件放置在站点子文件夹中的某个位置,通常是“img/favicon.ico”,

然后在您的母版页中添加对此文件的引用

<head runat="server">
    <link rel="Icon" type="image/png" href="img/favicon.ico" />
</head>

You need a white 16x16 .ico file placed somewhere on your site subfolders, usually "img/favicon.ico"

Then add a refference to this file in yout masterpage

<head runat="server">
    <link rel="Icon" type="image/png" href="img/favicon.ico" />
</head>
九八野马 2024-07-31 09:02:49

您可以使用最小数据 URI。

<link rel="icon" href="data:," />

来自 https://en.wikipedia.org/wiki/Data_URI_scheme

最小数据 URI 是由方案组成的 data:,,,无
媒体类型和零长度数据。

You can use the minimal data URI.

<link rel="icon" href="data:," />

From https://en.wikipedia.org/wiki/Data_URI_scheme

The minimal data URI is data:,, consisting of the scheme, no
media-type, and zero-length data.

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