材料设计图标未显示在浏览器中
Posted
技术标签:
【中文标题】材料设计图标未显示在浏览器中【英文标题】:Material Design Icons not showing in browser 【发布时间】:2016-04-25 03:11:22 【问题描述】:我正在尝试为我的网站托管 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
【问题讨论】:
这里有同样的问题,但是当我用 Google Repository 中的图标替换 materialize.css 提供的图标字体时,它就起作用了。我从以下链接下载了新的图标字体:github.com/google/material-design-icons/tree/master/iconfont 【参考方案1】:只需将以下 CSS 链接添加到您的页面并通过 Google 网络字体访问材料设计图标。
"<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/”
【讨论】:
【参考方案2】:只需直接在您的网页中使用 Google Material Design 图标即可。 你可以在这里找到详细信息https://google.github.io/material-design-icons/ 我能够通过使用 google 网络字体样式表来解决这个问题。这种方式要容易得多..您只需在网页中包含样式表,所有网络字体图标类都已加载,您就可以开始了。
【讨论】:
【参考方案3】:这是由 materializecss.com 网站上过时的图标字体引起的,我使用了 Google GH 存储库中的字体,它们可以正常工作sigh
【讨论】:
以上是关于材料设计图标未显示在浏览器中的主要内容,如果未能解决你的问题,请参考以下文章