你能通过javascript检测PC上是否启用了Cleartype吗?
一些@font-face字体在非cleartype设置中表现不佳(边缘变得非常不稳定)
有没有办法通过javascript检测到这一点,以便我可以在cleartype为主体的情况下对主体进行现代化风格的类添加关闭,这样我就可以在我的 CSS 中使用它
Some @font-face fonts don't play nice with non-cleartype settings (gets really choppy on the edges)
Is there a way to detect this via javascript so that I can do a modernizr-style class addition to the body if cleartype is off so I can use this in my CSS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IE 6+ 中,您可以检查
screen.fontSmoothingEnabled
属性。否则,您需要使用 html 5 画布来检查这一点。详细信息 。
In IE 6+ you can check the
screen.fontSmoothingEnabled
property. Otherwise you need to use an html 5 canvas to check for this.Details here.