发出加载字体

时间:2012-08-28 12:47:09

标签: asp.net css fonts

我使用过这个脚本,但它只适用于“Opera”。

<script type="text/javascript" src="http://fast.fonts.com/jsapi/xxxx-xxxx-xxxx-xxxx-xxxx.js"></script>

它不适用于其他浏览器。我试过这个剧本;

<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type=“text/javascript”>
  WebFont.load({
    monotype: {
      projectId: ‘xxxxx-xxxxx-xxxxx-xxxxx-xxxxx’
    }
  });
</script>

我试过这个css块;

@font-face {
    font-family: "Helvetica";
    src: url(http://fast.fonts.com/jsapi/xxxxx-xxxxx-xxxxx-xxxxx-xxxxx.js) format("truetype");
}

它仍然无法正常工作。 你有什么想法?我该怎么办?

1 个答案:

答案 0 :(得分:0)

也许您需要定义此字体的所有格式?

@font-face {
    font-family: 'Some Font';
    src: url('../fonts/webfont-webfont.eot');
    src: url('../fonts/webfont-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/webfont-webfont.woff') format('woff'),
         url('../fonts/webfont-webfont.ttf') format('truetype'),
         url('../fonts/webfont-webfont.svg#TechniczneTTEFNRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}