WorkerGlobalScope: fonts 屬性
注意:此功能僅在 Web Workers 中可用。
WorkerGlobalScope 介面的 fonts 屬性返回 worker 的 FontFaceSet 介面。
此屬性是 CSS 字型載入 API 的一部分。
值
返回值是 worker 的 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 |
瀏覽器相容性
載入中…