在网页中使用非标准字体?

发布于 2024-12-08 20:37:36 字数 1459 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

铜锣湾横着走 2024-12-15 20:37:36

您可以使用 CSS @font-face为此声明。

但请注意:并非所有浏览器都支持 otf 格式。
您可以使用诸如FontSquirrel's Font-face Generator之类的工具将字体转换为所有不同的格式你会需要的。它甚至会为您生成 CSS,然后您只需将其复制并粘贴到您的项目中即可。

You can use the CSS @font-face declaration for this.

However, beware: not all browsers support the otf format.
You can use a tool such as FontSquirrel's Font-face Generator to convert the font into all the different formats you'll need. It'll even generate the CSS for you, which you'll then simply copy and paste into your project.

风吹雨成花 2024-12-15 20:37:36

不是 100% 支持,但是:

@font-face {
    font-family: MyFont;
    src: url('MyFont.otf');
}

Not 100% supported, but:

@font-face {
    font-family: MyFont;
    src: url('MyFont.otf');
}
又怨 2024-12-15 20:37:36

或者,您可以使用 Cufon 字体替换:

http://cufon.shoqolate.com/generate/

但确实有一些缺点:文本无法复制,并且它使用 javascript,这在一些非常旧的浏览器中可能会出现问题,如果有人在关闭 js 的情况下浏览。

Alternatively, you could use Cufon font replacement:

http://cufon.shoqolate.com/generate/

It does have some drawbacks however: text can't be copied and it uses javascript which may be a problem in some very old browsers of if someone is browsing with js turned off.

音盲 2024-12-15 20:37:36

CSS 3 使浏览器能够下载和使用 TTF 文件格式。与往常一样,IE 提供部分支持。像往常一样,谷歌来救援。

http://code.google.com/apis/webfonts/docs/getting_started.html

CSS 3 has given browsers the ability to download and use TTF file formats. As usual IE gives partial support. As usual, Google to the rescue.

http://code.google.com/apis/webfonts/docs/getting_started.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文