From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/document/fonts/index.html | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 files/ja/web/api/document/fonts/index.html (limited to 'files/ja/web/api/document/fonts') diff --git a/files/ja/web/api/document/fonts/index.html b/files/ja/web/api/document/fonts/index.html new file mode 100644 index 0000000000..c0994c97c4 --- /dev/null +++ b/files/ja/web/api/document/fonts/index.html @@ -0,0 +1,66 @@ +--- +title: Document.fonts +slug: Web/API/Document/fonts +tags: + - API + - DOM + - Font Loading API + - FontFace + - FontFaceSet + - Fonts + - フォント +translation_of: Web/API/Document/fonts +--- +

{{APIRef("DOM")}}

+ +

fonts は {{domxref("Document")}} インターフェイスのプロパティで、文書の {{domxref("FontFaceSet")}} インターフェイスを返します。

+ +

構文

+ +
let fontFaceSet = document.fonts;
+ +

+ +

返値は文書の {{domxref("FontFaceSet")}} インターフェイスです。 FontFaceSet インターフェイスは新しいフォントを読み込んだり、以前読み込まれたフォントの状態をチェックしたりするのに有用です。

+ +

+ +

すべてのフォントが読み込まれた後の操作の実行

+ +
document.fonts.ready.then(function() {
+  // すべてのフォントが読み込まれた後にのみ実行する必要がある操作を
+  // ここに記述します。
+});
+
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS3 Font Loading','#FontFaceSet-interface','FontFaceSet')}}{{Spec2('CSS3 Font Loading')}}初回定義
+ +

ブラウザーの互換性

+ + + +
{{Compat("api.Document.fonts")}}
+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf