谷歌素材图标(字体)不会在mozilla Firefox中呈现

时间:2015-10-08 08:03:50

标签: css wordpress firefox font-face material

我正在尝试使用WAMP将google material-icons添加到我当前在localhost上的本地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">&#xE853;</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 个答案:

答案 0 :(得分:0)

在FF的网址栏中,转到about:config。找到 security.fileuri.strict_origin_policy 并将其设置为false。

OR

可能是文件路径问题。尝试添加斜杠:

 url("/MaterialIcons-Regular.woff2")