我有一个网页应用程序根据当前登录的用户进行品牌化。我想将页面的favicon更改为自有品牌的标识,但我无法找到任何代码或任何代码如何做到这一点的例子。有没有人成功完成过这个?
我想象一下文件夹中有十几个图标,并且使用的favicon.ico文件的引用只是与HTML页面一起动态生成的。想法?
答案 0 :(得分:335)
为什么不呢?
(function() {
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = 'http://www.stackoverflow.com/favicon.ico';
document.getElementsByTagName('head')[0].appendChild(link);
})();
Firefox应该很酷。
编辑以正确覆盖现有图标
答案 1 :(得分:78)
以下是一些适用于Firefox,Opera和Chrome的代码(与此处发布的所有其他答案不同)。这也是一个不同的demo of code that works in IE11。以下示例可能无法在Safari或Internet Explorer中使用。
/*!
* Dynamically changing favicons with JavaScript
* Works in all A-grade browsers except Safari and Internet Explorer
* Demo: http://mathiasbynens.be/demo/dynamic-favicons
*/
// HTML5™, baby! http://mathiasbynens.be/notes/document-head
document.head = document.head || document.getElementsByTagName('head')[0];
function changeFavicon(src) {
var link = document.createElement('link'),
oldLink = document.getElementById('dynamic-favicon');
link.id = 'dynamic-favicon';
link.rel = 'shortcut icon';
link.href = src;
if (oldLink) {
document.head.removeChild(oldLink);
}
document.head.appendChild(link);
}
然后您将按如下方式使用它:
var btn = document.getElementsByTagName('button')[0];
btn.onclick = function() {
changeFavicon('http://www.google.com/favicon.ico');
};
答案 2 :(得分:41)
如果您有以下HTML代码段:
<link id="favicon" rel="shortcut icon" type="image/png" href="favicon.png" />
例如,您可以通过更改此链接上的HREF元素来更改使用Javascript的图标(假设您正在使用JQuery):
$("#favicon").attr("href","favicon2.png");
你也可以创建一个Canvas元素并将HREF设置为画布的ToDataURL(),就像Favicon Defender那样。
答案 3 :(得分:32)
jQuery版本:
$("link[rel='shortcut icon']").attr("href", "favicon.ico");
甚至更好:
$("link[rel*='icon']").attr("href", "favicon.ico");
Vanilla JS版本:
document.querySelector("link[rel='shortcut icon']").href = "favicon.ico";
document.querySelector("link[rel*='icon']").href = "favicon.ico";
答案 4 :(得分:13)
更现代的方法:
const changeFavicon = link => {
let $favicon = document.querySelector('link[rel="icon"]')
// If a <link rel="icon"> element already exists,
// change its href to the given link.
if ($favicon !== null) {
$favicon.href = link
// Otherwise, create a new element and append it to <head>.
} else {
$favicon = document.createElement("link")
$favicon.rel = "icon"
$favicon.href = link
document.head.appendChild($favicon)
}
}
然后您可以像这样使用它:
changeFavicon("http://www.stackoverflow.com/favicon.ico")
答案 5 :(得分:10)
favicon在head标签中声明为:
<link rel="shortcut icon" type="image/ico" href="favicon.ico">
您应该只能在视图数据中传递所需图标的名称,并将其放入头标记。
答案 6 :(得分:9)
这是我用来为Opera,Firefox和Chrome添加动态favicon支持的一些代码。我无法让IE或Safari工作。基本上Chrome允许使用动态图片,但只有当页面的位置(或其中的iframe
等)发生变化时,它才会更新它们:
var IE = navigator.userAgent.indexOf("MSIE")!=-1
var favicon = {
change: function(iconURL) {
if (arguments.length == 2) {
document.title = optionalDocTitle}
this.addLink(iconURL, "icon")
this.addLink(iconURL, "shortcut icon")
// Google Chrome HACK - whenever an IFrame changes location
// (even to about:blank), it updates the favicon for some reason
// It doesn't work on Safari at all though :-(
if (!IE) { // Disable the IE "click" sound
if (!window.__IFrame) {
__IFrame = document.createElement('iframe')
var s = __IFrame.style
s.height = s.width = s.left = s.top = s.border = 0
s.position = 'absolute'
s.visibility = 'hidden'
document.body.appendChild(__IFrame)}
__IFrame.src = 'about:blank'}},
addLink: function(iconURL, relValue) {
var link = document.createElement("link")
link.type = "image/x-icon"
link.rel = relValue
link.href = iconURL
this.removeLinkIfExists(relValue)
this.docHead.appendChild(link)},
removeLinkIfExists: function(relValue) {
var links = this.docHead.getElementsByTagName("link");
for (var i=0; i<links.length; i++) {
var link = links[i]
if (link.type == "image/x-icon" && link.rel == relValue) {
this.docHead.removeChild(link)
return}}}, // Assuming only one match at most.
docHead: document.getElementsByTagName("head")[0]}
要更改favicon,只需使用上述内容favicon.change("ICON URL")
。
(以http://softwareas.com/dynamic-favicons为基础获得我基于此的代码。)
答案 7 :(得分:5)
我会使用Greg的方法为favicon.ico制作一个自定义处理程序 这是一个(简化的)处理程序:
using System;
using System.IO;
using System.Web;
namespace FaviconOverrider
{
public class IcoHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/x-icon";
byte[] imageData = imageToByteArray(context.Server.MapPath("/ear.ico"));
context.Response.BinaryWrite(imageData);
}
public bool IsReusable
{
get { return true; }
}
public byte[] imageToByteArray(string imagePath)
{
byte[] imageByteArray;
using (FileStream fs = new FileStream(imagePath, FileMode.Open, FileAccess.Read))
{
imageByteArray = new byte[fs.Length];
fs.Read(imageByteArray, 0, imageByteArray.Length);
}
return imageByteArray;
}
}
}
然后,您可以在IIS6中的Web配置的httpHandlers部分中使用该处理程序,或使用IIS7中的“处理程序映射”功能。
答案 8 :(得分:5)
这是使收藏夹图标成为表情符号或文本的片段。当我在 stackoverflow 时,它在控制台中工作。
function changeFavicon(text) {
const canvas = document.createElement('canvas');
canvas.height = 64;
canvas.width = 64;
const ctx = canvas.getContext('2d');
ctx.font = '64px serif';
ctx.fillText(text, 0, 64);
const link = document.createElement('link');
const oldLinks = document.querySelectorAll('link[rel="shortcut icon"]');
oldLinks.forEach(e => e.parentNode.removeChild(e));
link.id = 'dynamic-favicon';
link.rel = 'shortcut icon';
link.href = canvas.toDataURL();
document.head.appendChild(link);
}
changeFavicon('❤️');
答案 9 :(得分:3)
使IE工作的唯一方法是将Web服务器设置为处理* .ico的请求以调用服务器端脚本语言(PHP,.NET等)。还要设置* .ico以重定向到单个脚本,并让此脚本提供正确的favicon文件。如果您希望能够在不同的favicons之间的同一浏览器中来回跳转,我相信缓存仍会存在一些有趣的问题。
答案 10 :(得分:3)
对于使用jQuery的人,有一个单行解决方案:
$("link[rel*='icon']").prop("href",'https://www.stackoverflow.com/favicon.ico');
答案 11 :(得分:2)
根据WikiPedia,您可以使用link
部分中的head
标记指定要加载的favicon文件,参数为rel="icon"
。
例如:
<link rel="icon" type="image/png" href="/path/image.png">
我想如果您想为该通话编写一些动态内容,您可以访问Cookie,这样您就可以检索会话信息并提供适当的内容。
你可能会违反文件格式(IE据说只支持它的.ICO格式,而大多数其他人都支持PNG和GIF图像)以及可能的缓存问题,无论是在浏览器上还是通过代理。这可能是因为favicon的原始版本,特别是用于标记带有网站迷你徽标的书签。
答案 12 :(得分:2)
是完全可能的
e.g。
<link rel="shortcut icon" href="/favicon.ico?userId=someUserId">
然后您使用的任何服务器端语言/框架应该能够轻松地找到基于userId 的文件,并在对该请求的响应中提供它。
但要正确地做好消息(实际上是 真的 复杂主题),请在此处查看答案{ {3}}
比自己制定所有细节要容易得多。
享受。
答案 13 :(得分:2)
或者如果您想要图释:)
var canvas = document.createElement("canvas");
canvas.height = 64;
canvas.width = 64;
var ctx = canvas.getContext("2d");
ctx.font = "64px serif";
ctx.fillText("☠️", 0, 64);
$("link[rel*='icon']").prop("href", canvas.toDataURL());
答案 14 :(得分:1)
在开发站点时,我一直使用此功能……因此,我可以一目了然地看到哪个标签中正在运行本地,开发或生产。
现在,Chrome支持SVG网站图标,这使它变得更加简单。
在https://gist.github.com/elliz/bb7661d8ed1535c93d03afcd0609360f有一个雄心勃勃的tampermonkey脚本,它指向我在https://elliz.github.io/svg-favicon/所吸引的演示站点上
从另一个答案中对此进行了修改……可以改进,但足以满足我的需求。
(function() {
'use strict';
// play with https://codepen.io/elliz/full/ygvgay for getting it right
// viewBox is required but does not need to be 16x16
const svg = `
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<circle cx="8" cy="8" r="7.2" fill="gold" stroke="#000" stroke-width="1" />
<circle cx="8" cy="8" r="3.1" fill="#fff" stroke="#000" stroke-width="1" />
</svg>
`;
var favicon_link_html = document.createElement('link');
favicon_link_html.rel = 'icon';
favicon_link_html.href = svgToDataUri(svg);
favicon_link_html.type = 'image/svg+xml';
try {
let favicons = document.querySelectorAll('link[rel~="icon"]');
favicons.forEach(function(favicon) {
favicon.parentNode.removeChild(favicon);
});
const head = document.getElementsByTagName('head')[0];
head.insertBefore( favicon_link_html, head.firstChild );
}
catch(e) { }
// functions -------------------------------
function escapeRegExp(str) {
return str.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
}
function replaceAll(str, find, replace) {
return str.replace(new RegExp(escapeRegExp(find), 'g'), replace);
}
function svgToDataUri(svg) {
// these may not all be needed - used to be for uri-encoded svg in old browsers
var encoded = svg.replace(/\s+/g, " ")
encoded = replaceAll(encoded, "%", "%25");
encoded = replaceAll(encoded, "> <", "><"); // normalise spaces elements
encoded = replaceAll(encoded, "; }", ";}"); // normalise spaces css
encoded = replaceAll(encoded, "<", "%3c");
encoded = replaceAll(encoded, ">", "%3e");
encoded = replaceAll(encoded, "\"", "'"); // normalise quotes ... possible issues with quotes in <text>
encoded = replaceAll(encoded, "#", "%23"); // needed for ie and firefox
encoded = replaceAll(encoded, "{", "%7b");
encoded = replaceAll(encoded, "}", "%7d");
encoded = replaceAll(encoded, "|", "%7c");
encoded = replaceAll(encoded, "^", "%5e");
encoded = replaceAll(encoded, "`", "%60");
encoded = replaceAll(encoded, "@", "%40");
var dataUri = 'data:image/svg+xml;charset=UTF-8,' + encoded.trim();
return dataUri;
}
})();
只需将自己的SVG(如果使用的是工具,可以用Jake Archibald的SVGOMG清洗)弹出到顶部的const中。确保它是正方形的(使用viewBox属性),并且一切顺利。
答案 15 :(得分:0)
在大多数情况下,网站图标是这样声明的。
<link rel="icon" href"...." />
这样你就可以用这个来引用它。
const linkElement = document.querySelector('link[rel=icon]');
你可以用这个来改变图片
linkElement.href = 'url/to/any/picture/remote/or/relative';
答案 16 :(得分:-1)
我在我的项目中使用favico.js。
它允许将favicon更改为一系列预定义形状以及自定义形状。
在内部,它使用canvas
进行渲染,使用base64
数据网址进行图标编码。
图书馆也有很好的功能:图标徽章和动画;据称,您甚至可以将网络摄像头视频流式传输到图标:)