FontFaceSet: add() Methode
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 add()
-Methode der FontFaceSet
-Schnittstelle fügt ein neues Schriftartobjekt zur Menge hinzu.
Syntax
js
add(font)
Parameter
Rückgabewert
Eine neue FontFaceSet
.
Ausnahmen
InvalidModificationError
DOMException
-
Wird ausgelöst, wenn diese Schriftart bereits über die CSS
@font-face
-Regel eingebunden ist.
Beispiele
Im folgenden Beispiel wird ein neues FontFace
-Objekt erstellt und dann zur FontFaceSet
hinzugefügt.
js
const font = new FontFace("MyFont", "url(myFont.woff2)");
document.fonts.add(font);
Spezifikationen
Specification |
---|
CSS Font Loading Module Level 3 # dom-fontfaceset-add |
Browser-Kompatibilität
BCD tables only load in the browser