网页字体预设
使用来自 Google Fonts, FontShare 的网页字体,只需提供字体名称。
查看 所有支持的提供商。
安装
bash
pnpm add -D @unocss/preset-web-fonts
bash
yarn add -D @unocss/preset-web-fonts
bash
npm install -D @unocss/preset-web-fonts
ts
import presetUno from '@unocss/preset-uno'
import presetWebFonts from '@unocss/preset-web-fonts'
import { defineConfig } from 'unocss'
export default defineConfig({
presets: [
presetUno(),
presetWebFonts({ /* options */ }),
],
})
提示
此预设包含在 unocss
包中,您也可以从那里导入它
ts
import { presetWebFonts } from 'unocss'
提供商
当前支持的提供商
none
- 不执行任何操作,将字体视为系统字体google
- Google Fontsbunny
- 隐私友好型 Google Fontsfontshare
- ITF 提供的优质字体服务
信息
欢迎 PR 添加更多提供商。 🙌
自定义获取函数
使用您自己的函数来获取字体源。
ts
import presetUno from '@unocss/preset-uno'
import presetWebFonts from '@unocss/preset-web-fonts'
import axios from 'axios'
import ProxyAgent from 'proxy-agent'
import { defineConfig } from 'unocss'
export default defineConfig({
presets: [
presetUno(),
presetWebFonts({
// use axios with an https proxy
customFetch: (url: string) => axios.get(url, { httpsAgent: new ProxyAgent('https://127.0.0.1:7890') }).then(it => it.data),
provider: 'google',
fonts: {
sans: 'Roboto',
mono: ['Fira Code', 'Fira Mono:400,700'],
},
}),
],
})
选项
提供商
- 类型:
WebFontsProviders
- 默认:
google
网页字体的提供商服务。
ts
type WebFontsProviders = 'google' | 'bunny' | 'fontshare' | 'none'
字体
- 类型:
Record<string, WebFontMeta | string | (WebFontMeta | string)[]>
字体。查看 示例 以获取更多详细信息。
ts
interface WebFontMeta {
name: string
weights?: (string | number)[]
italic?: boolean
/**
* Override the provider
* @default <matches root config>
*/
provider?: WebFontsProviders
}
extendTheme
- 类型:
boolean
- 默认:
true
扩展主题对象。
themeKey
- 类型:
string
- 默认:
fontFamily
主题对象的键。
inlineImports
- 类型:
boolean
- 默认:
true
内联 CSS @import()
。
customFetch
- 类型:
(url: string) => Promise<string>
- 默认:
undefined
使用您自己的函数来获取字体源。查看 自定义获取函数。
示例
ts
presetWebFonts({
provider: 'google', // default provider
fonts: {
// these will extend the default theme
sans: 'Roboto',
mono: ['Fira Code', 'Fira Mono:400,700'],
// custom ones
lobster: 'Lobster',
lato: [
{
name: 'Lato',
weights: ['400', '700'],
italic: true,
},
{
name: 'sans-serif',
provider: 'none',
},
],
},
})
以下 CSS 将自动生成
css
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Fira+Code&family=Fira+Mono:wght@400;700&family=Lobster&family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* layer: default */
.font-lato {
font-family: "Lato", sans-serif;
}
.font-lobster {
font-family: "Lobster";
}
.font-mono {
font-family: "Fira Code", "Fira Mono", ui-monospace, SFMono-Regular, Menlo,
Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans {
font-family: "Roboto", ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
}
本地服务字体
默认情况下,此预设将从提供商的 CDN 获取字体。如果您想本地服务字体,您可以下载字体并使用 @unocss/preset-web-fonts/local
中的处理器从您自己的服务器提供服务。
ts
import presetWebFonts from '@unocss/preset-web-fonts'
import { createLocalFontProcessor } from '@unocss/preset-web-fonts/local'
import { defineConfig } from 'unocss'
export default defineConfig({
presets: [
presetWebFonts({
provider: 'none',
fonts: {
sans: 'Roboto',
mono: 'Fira Code',
},
// This will download the fonts and serve them locally
processors: createLocalFontProcessor({
// Directory to cache the fonts
cacheDir: 'node_modules/.cache/unocss/fonts',
// Directory to save the fonts assets
fontAssetsDir: 'public/assets/fonts',
// Base URL to serve the fonts from the client
fontServeBaseUrl: '/assets/fonts'
})
}),
],
})
这会将字体资源下载到 public/assets/fonts
并从客户端的 /assets/fonts
提供服务。执行此操作时,请确保字体的许可证允许您重新分发,因此该工具不对任何法律问题负责。
信息
此功能是 Node.js 特定的,在浏览器中将不起作用。