FontFaceSet: ready-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Die schreibgeschützte Eigenschaft ready der FontFaceSet-Schnittstelle gibt ein Promise zurück, das auf das gegebene FontFaceSet auflöst.

Das Promise wird erst aufgelöst, wenn das Dokument das Laden von Schriftarten abgeschlossen hat, Layout-Operationen abgeschlossen sind und keine weiteren Schriftarten geladen werden müssen.

Wert

Ein Promise, das auf das gegebene FontFaceSet auflöst.

Beispiele

Im folgenden Beispiel wird der Wert von ready in die Konsole ausgegeben, sobald das Promise aufgelöst wurde.

js
async function isReady() {
  let ready = await document.fonts.ready;
  console.log(ready);
}

isReady();

Spezifikationen

Specification
CSS Font Loading Module Level 3
# dom-fontfaceset-ready

Browser-Kompatibilität

BCD tables only load in the browser