Google Material Icons(字体)不会在 Mozilla Firefox 中呈现
Posted
技术标签:
【中文标题】Google Material Icons(字体)不会在 Mozilla Firefox 中呈现【英文标题】:Google Material Icons (font) wont render in mozilla firefox 【发布时间】:2016-01-05 17:37:49 【问题描述】:我正在尝试使用 WAMP 将 google material-icons 添加到我目前在本地主机上的 WordPress 项目中。使用 CDN,一切正常,但我想要对图标的静态引用。
这是我的目录结构
/
-index.php
-css/
----style.min.css
----MaterialIcons-Regular.eot
----MaterialIcons-Regular.ttf
----MaterialIcons-Regular.woff
----MaterialIcons-Regular.woff2
在style.min.css
我有:
.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';
@font-face
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url(MaterialIcons-Regular.woff2) format('woff2'),
url(MaterialIcons-Regular.woff) format('woff'),
url(MaterialIcons-Regular.ttf) format('truetype');
当我在正文中使用图标时:
<i class="material-icons"></i>
图标在 chrome 中渲染得很好,但在 Firefox 中却不行; FireBug 显示此错误
Cross-Origin Request Blocked: The Same Origin Policy disallows reading
the remote resource athttp://192.168.0.8/wp/wp-content/themes/thediode/css/MaterialIcons-Regular.woff2. (Reason: CORS header 'Access-Control-Allow-Origin' missing).
192.168.0.8/wp
是在 localhost 上的 WordPress 后端中设置的根,以便正确获取图像和其他资源,我想这就是问题所在。
有任何想法吗?
这在直播时会起作用吗?
【问题讨论】:
【参考方案1】:在 FF 的 URL 栏中,转到 about:config。找到 security.fileuri.strict_origin_policy 并将其设置为 false。
或
可能是文件路径问题。尝试添加斜线:
url("/MaterialIcons-Regular.woff2")
【讨论】:
以上是关于Google Material Icons(字体)不会在 Mozilla Firefox 中呈现的主要内容,如果未能解决你的问题,请参考以下文章
scss 使用Google Material Icons作为之前和之后
使用google api material icons在网页中插入图标
使用google api material icons在网页中插入图标