FontFace
The FontFace
interface represents a single usable font face. It allows control of the source of the font face, being a URL to an external resource, or a buffer; it also allows control of when the font face is loaded and its current status.
Constructor
FontFace()
-
Constructs and returns a new
FontFace
object, built from an external resource described by a URL or from anArrayBuffer
.
Properties
FontFace.ascentOverride
-
A
CSSOMString
that retrieves or sets the ascent metric of the font. It is equivalent to theascent-override
descriptor. FontFace.descentOverride
-
A
CSSOMString
that retrieves or sets the descent metric of the font. It is equivalent to thedescent-override
descriptor. FontFace.display
-
A
CSSOMString
that determines how a font face is displayed based on whether and when it is downloaded and ready to use. FontFace.family
-
A
CSSOMString
that retrieves or sets the family of the font. It is equivalent to thefont-family
descriptor. FontFace.featureSettings
-
A
CSSOMString
that retrieves or sets infrequently used font features that are not available from a font's variant properties. It is equivalent to thefont-feature-settings
descriptor. FontFace.lineGapOverride
-
A
CSSOMString
that retrieves or sets the line-gap metric of the font. It is equivalent to theline-gap-override
descriptor. FontFace.loaded
Read only-
Returns a
Promise
that resolves with the currentFontFace
object when the font specified in the object's constructor is done loading or rejects with aSyntaxError
. FontFace.status
Read only-
Returns an enumerated value indicating the status of the font, one of
"unloaded"
,"loading"
,"loaded"
, or"error"
. FontFace.stretch
-
A
CSSOMString
that retrieves or sets how the font stretches. It is equivalent to thefont-stretch
descriptor. FontFace.style
-
A
CSSOMString
that retrieves or sets the style of the font. It is equivalent to thefont-style
descriptor. FontFace.unicodeRange
-
A
CSSOMString
that retrieves or sets the range of unicode codepoints encompassing the font. It is equivalent to theunicode-range
descriptor. FontFace.variant
-
A
CSSOMString
that retrieves or sets the variant of the font. It is equivalent to thefont-variant
descriptor. FontFace.variationSettings
-
A
CSSOMString
that retrieves or sets the variation settings of the font. It is equivalent to thefont-variation-settings
descriptor. FontFace.weight
-
A
CSSOMString
that contains the weight of the font. It is equivalent to thefont-weight
descriptor.
FontFace.load()
-
Loads a font based on current object's constructor-passed requirements, including a location or source buffer, and returns a
Promise
that resolves with the current FontFace object.
Specifications
Specification |
---|
CSS Font Loading Module Level 3 # fontface-interface |
Browser compatibility
BCD tables only load in the browser