gpt4 book ai didi

html - 字体回退 : how to specify "font-specific" rules?

转载 作者:搜寻专家 更新时间:2023-10-31 08:21:07 24 4
gpt4 key购买 nike

有时网络字体不会加载(例如,如果托管在谷歌字体上)和回退可能需要特殊处理,因为它们可以始终与其他指定字体不同

例如:

font-family:'webfontname', 'winfont', 'linuxfont', sans-serif;

现在网络字体应该有

letter-spacing:2px;

但是winfont应该有

letter-spacing:-4px;

我该如何管理?

谢谢

最佳答案

您正在使用 Google Web Fonts , 所以我建议使用 WebFont Loader ,这将允许您根据字体是正在加载还是已加载来应用不同的 CSS。

这是一个基于我的第二个链接中的代码的最小示例:

http://jsbin.com/izadif/ (垃圾邮件刷新可以看到)

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Cantarell' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<style type="text/css">
.wf-loading h1 {
font-family: serif;
font-size: 16px;
color: red;
letter-spacing: 20px;
}
.wf-active h1 {
font-family: 'Cantarell', serif;
font-size: 16px;
letter-spacing: 2px;
}
</style>
</head>
<body>
<h1>This is using Cantarell</h1>
</body>
</html>

关于html - 字体回退 : how to specify "font-specific" rules?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9089650/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com