gpt4 book ai didi

fonts - 在 Debian 上为 CasperJS/PhantomJS 指定默认字体

转载 作者:行者123 更新时间:2023-12-04 06:41:44 25 4
gpt4 key购买 nike

我们正在尝试指定 CasperJS/PhantomJS 在找到通用的“sans-serif”css 字体时应该使用哪些字体。我们试图更改 ~/.fonts.conf 文件,但它被完全忽略了。

是否可以告诉 CasperJS/PhantomJS 使用哪种字体,同时为不同的字符集(如中文、日文、韩文等)指定后备字体?

最佳答案

您可以通过在 CSS 文件中链接到任何字体来使用它。我将以下内容用于俄语:

@font-face {
font-family: 'open_sanslight';
src: url('cyrillic/opensans-light.svg#open_sanslight') format('svg');
font-weight: normal;
font-style: normal;
}

然后您可以将字体设置为 HTML 文档或特定区域的默认字体。定义字体后,将其设置为整个文档的默认字体,如下所示:

body {
font-family: open_sanslight;
}

完整示例:

<!DOCTYPE html>
<html>

<head>
<style>
@font-face {
font-family: 'open_sanslight';
src: url('cyrillic/opensans-light.svg#open_sanslight') format('svg');
font-weight: normal;
font-style: normal;
}

body {
font-family: open_sanslight;
}
</style>
</head>

<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>

</html>

这需要 cyrillic 文件夹中的 .svg 文件。您可以从 Google Fonts 下载这些文件(或其他文件) .

关于fonts - 在 Debian 上为 CasperJS/PhantomJS 指定默认字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25948056/

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