问题描述
我很抱歉,如果这是一个非常简单的问题,但是如何在没有
< link的情况下使用Google材质图标href =https://fonts.googleapis.com/icon?family=Material+Icons =stylesheet>
?
我想要我的应用即使用户没有互联网连接也能显示图标
解决方案我很抱歉,如果这是一个非常简单的问题,但是如何在没有
< link的情况下使用Google材质图标href =https://fonts.googleapis.com/icon?family=Material+Icons =stylesheet>
?
我想要我的应用即使用户没有互联网连接也能显示图标
解决方案
和将包含材质设计图标文件的iconfont文件夹复制到本地项目中 -
< i class =material-icons> face< / i>
NPM / Bower软件包
谷歌正式拥有Bower和NPM依赖项选项 - 遵循材料图标指南
使用bower
bower install material-design-icons --save
使用NPM
npm install material-design-icons --save
My apologies if this is a very simple question, but how do you use google material icons without a
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
?
I would like my app to be able to display the icons even when the user does not have an internet connection
Method 2. Self hosting 1
Download and copy the iconfont folder, containing the material design icons files, into your local project -- https://github.com/google/material-design-icons/tree/master/iconfont
<i class="material-icons">face</i>
NPM / Bower Packages
Google officially has a Bower and NPM dependency option -- follow Material Icons Guide 1
Using bower
bower install material-design-icons --save
Using NPM
npm install material-design-icons --save
1 http://google.github.io/material-design-icons/
这篇关于如何离线托管材料图标?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!