我正在尝试为我的网站托管Google Material Design图标集但是我无法在Chrome或Safari中显示图标。
我正在使用这个CSS文件:
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(/public/dist/font/Material-Design-Icons.eot); /* For IE6-8 */
src: url(/public/dist/font/Material-Design-Icons.woff2) format('woff2'),
url(/public/dist/font/Material-Design-Icons.woff) format('woff'),
url(/public/dist/font/Material-Design-Icons.ttf) format('truetype');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
width: 1em;
height: 1em;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
使用以下方式拉入文件:
link(rel="stylesheet", href="/public/dist/css/font.css")
我在浏览器中看到的内容已加载
字体本身甚至已加载到页面中,我可以在Chrome上的网络标签中看到.woff文件。
这是public
文件夹结构,由服务器“按原样”托管
我在这里使用字体(玉):
i.material-icons.prefix perm_identity
我可以看到上面的CSS类应用于该元素
但字体不会渲染。
编辑:此处有相同问题的人:https://github.com/google/material-design-icons/issues/205
答案 0 :(得分:4)
这是由materializecss.com网站上过时的图标字体引起的,我使用了Google GH repo中的那些字体并且他们叹了
答案 1 :(得分:1)
只需在您的网页中直接使用Google素材设计图标即可。 您可以在此处找到详细信息https://google.github.io/material-design-icons/ 我能够通过使用谷歌网络字体样式表解决这个问题。这种方式要容易得多..你可以在你的网页中加入样式表,加载所有的网络字体图标类,你就可以了。
答案 2 :(得分:0)
只需将以下 CSS 链接添加到您的页面,即可通过 Google 网络字体访问 Material Design 图标。
"<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">"
并指定您要使用的图标。
"<span class="material-icons">face</span>"
更多详情请参考“https://google.github.io/material-design-icons/”