这些字体是如何通过引用 .js 文件呈现的?
是什么改变了浏览器,人们通过引用 .js 文件来使用这些时髦的字体(不带图形)?
像打字机一样?
What has changed browser wise, that people are using these funky font's w/o graphics by referencing .js files?
like typekit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
@font-face
声明来指定浏览器将呈现的自定义字体。 Typekit 使用 js 确保@font-face
跨浏览器工作。您可以在此处阅读有关实现自定义字体的信息:http://paulirish.com/2009 /bulletproof-font-face-implementation-syntax/
就像提到的无眼睑一样,Font Squirrel 是一个这方面的资源很好。为您提供标记和一切。
You can use the
@font-face
declaration to specify a custom font that the browser will render. Typekit uses js to make sure@font-face
works across browsers.You can read about implementing custom fonts here: http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/
like eyelidlessness mentioned, Font Squirrel is a great resource for this. Gives you tha markup and everything.
在现代浏览器(firefox、chrome、safari)中,javascript 创建canvas 元素来创建字体文本
在 Internet Explorer 中,它们使用计算机视觉标记语言
In modern browsers (firefox,chrome,safari) javascript create canvas element to create the font text
In Internet Explorer they use Computer Vision Markup Language