内容简介:You should be using SVG favicons. They’re supported in all modern browsers right now.Also, you probably don’t need all these icon links and sizes you’re copying from projects to projects. Let’s find out what’s the absolute minimum required, word by word.Th
Are you using SVG favicons yet? A guide for modern browsers.
Apr 19 ·3min read
You should be using SVG favicons. They’re supported in all modern browsers right now.
Also, you probably don’t need all these icon links and sizes you’re copying from projects to projects. Let’s find out what’s the absolute minimum required, word by word.
Icon
The main favicon can be an SVG of any size. The type type=”image/svg+xml”
is unnecessary.
<link rel="icon" href="favicon.svg">
Mask icon
For Safari, it’s a bit different. You need to add a mask-icon
. It’s also an SVG, but it has to be made of a single colour and placed on a transparent background. The browser adds the colour of the attribute.
<link rel=”mask-icon” href=”mask-icon.svg” color=”#000000">
Touch icon
The icon for iOS devices as well as favourites from browsers new tab page and more. You only need the 180 x 180
size, and the sizes
attribute is superfluous.
<link rel="apple-touch-icon" href="apple-touch-icon.png">
Manifest
The manifest.json
provides information about your web app or website. These lines are mandatory to pass Lighthouse
’s test. The icon linked is used by Android and Chrome. The largest size 512 x 512
is the only one needed.
{
"name": "Starter",
"short_name": "Starter",
"icons": [{
"src": "google-touch-icon.png",
"sizes": "512x512"
}],
"background_color": "#ffffff",
"theme_color": "#ffffff",
"display": "fullscreen"
}
The theme-color
meta
is still required for Android’s Chrome browser colour.
<meta name="theme-color" content="#ffffff">
Done
That’s it, that’s all the icons you need for the current modern browsers, everything else is unnecessary. The msapplication-TileImage
can be added if you want a different icon in Windows tiles otherwise the apple-touch-icon
is used. The TileColor
isn’t used anymore.
Everything else
Sadly, not everyone is on modern browsers yet BUT it can be easily resolved by dropping a 32 x 32
favicon.ico
at the root of your website. This works everywhere else, even at your grandma’s.
Dark mode
To finish, here’s a tip for dark mode. One of the benefits of an SVG favicon is that you can change the colour with CSS. Using the prefers-color-scheme
media
query, the colour of your favicon changes with the users dark or light mode. This method won’t work with the mask-icon
since the colour is in the attribute but Safari adds a white background if there isn’t enough contrast.
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
<style>
path {
fill: #000;
}
@media (prefers-color-scheme: dark) {
path {
fill: #fff;
}
}
</style>
<path fill-rule="evenodd" d="M0 0h16v16H0z"/>
</svg>
Result
Here’s the final result. Copy this in the <head>
of your website and don’t forget to place a favicon.ico
at the root. :v:
<meta name="theme-color" content="#ffffff"> <link rel="icon" href="favicon.svg"> <link rel="mask-icon" href="mask-icon.svg" color="#000000"> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <link rel="manifest" href="manifest.json">
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
深度解析淘宝运营
刘涛 / 电子工业出版社 / 2015-9-1 / 49.00元
淘宝运营,仅有知识是不够的,还需要有系统的运营思路。为帮助广大电商从业者以及众多中小卖家更好地运营店铺,《深度解析淘宝运营》全面阐述了整个店铺运营的重点环节,包括淘宝搜索规则、打造爆款、店铺规划、客户服务、直通车、钻石展位、数据分析等内容。具体操作步骤翔实,并且结合笔者的实际操作经验,将各个环节最本质的一面透彻展现给读者,结合理论与实战,尽可能向读者展示一个最真实的运营核心。《深度解析淘宝运营》没......一起来看看 《深度解析淘宝运营》 这本书的介绍吧!