WorkerGlobalScope: fonts 属性

注意: 此功能仅在 Web Workers 中可用。

WorkerGlobalScope 接口的 fonts 属性返回工作线程的 FontFaceSet 接口。

此属性是 CSS 字体加载 API 的一部分。

返回值是工作线程的 FontFaceSet 接口。FontFaceSet 接口可用于加载新字体、检查以前加载的字体的状态等。

示例

所有字体加载完成后执行操作

js
fonts.ready.then(() => {
  // Any operation that needs to be done only after all the fonts
  // have finished loading can go here.
});

规范

规范
CSS 字体加载模块第 3 级
# dom-fontfacesource-fonts

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅