在Xbox 360上的Internet Explorer 9上@ font-face?

时间:2015-04-14 15:02:02

标签: html css internet-explorer xbox360 xbox

我试图在Xbox 360上的IE9上加载字体。它在普通的Windows 7 / Internet Explorer 9盒子上工作得很好,但在Xbox上却没有。任何人都知道获取字体的技巧是什么?

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.eot") format("embedded-opentype"), url("../fonts/Gotham-Medium.otf") format("opentype"), url("../fonts/Gotham-Medium.woff") format("woff"), url("../fonts/Gotham-Medium.ttf") format("truetype"), url("../fonts/Gotham-Medium.svg#Gotham") format("svg");
  font-weight: normal;
  font-style: normal; 
}

body {
  font-family: "Gotham";
}

- 更新 -

我尝试删除除woff和ttf之外的所有字体格式:

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.woff") format("woff"), url("../fonts/Gotham-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

但是IE9仍然向我展示了新的罗马字体。

1 个答案:

答案 0 :(得分:0)

基于here链接和MSDN here中的官方文档。它说.eot文件不受支持。所以我的建议是使用" .woff"或" .ttf"使用@ font-face的字体文件类型。

希望这会有所帮助。 快乐编码:)