aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/@font-face/src/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/@font-face/src/index.html')
-rw-r--r--files/ja/web/css/@font-face/src/index.html106
1 files changed, 0 insertions, 106 deletions
diff --git a/files/ja/web/css/@font-face/src/index.html b/files/ja/web/css/@font-face/src/index.html
deleted file mode 100644
index c7c6478916..0000000000
--- a/files/ja/web/css/@font-face/src/index.html
+++ /dev/null
@@ -1,106 +0,0 @@
----
-title: src
-slug: Web/CSS/@font-face/src
-tags:
- - '@font-face'
- - アットルール記述子
- - CSS
- - CSS Descriptor
- - CSS Fonts
- - CSS Property
- - リファレンス
-translation_of: Web/CSS/@font-face/src
----
-{{CSSRef}}
-
-<strong>`src`</strong> は CSS における {{cssxref("@font-face")}} 規則の 記述子で、フォントデータを含むリソースを指定します。 `@font-face` 規則を有効にするためには必要です。
-
-## 構文
-
-<pre class="brush: css notranslate">/* &lt;url&gt; 値 */
-src: url(https://somewebsite.com/path/to/font.woff); /* 絶対 URL */
-src: url(path/to/font.woff); /* 相対 URL */
-src: url(path/to/font.woff) format("woff"); /* 明示的な書式 */
-src: url('path/to/font.woff'); /* 引用符付きの URL */
-src: url(path/to/svgfont.svg#example); /* フラグメントで識別するフォント */
-
-/* &lt;font-face-name&gt; 値 */
-src: local(font); /* 引用符なしの名前 */
-src: local(some font); /* 空白が入った名前 */
-src: local("font"); /* 引用符付きの名前 */
-
-/* 複数の項目 */
-src: local(font), url(path/to/font.svg) format("svg"),
- url(path/to/font.woff) format("woff"),
- url(path/to/font.otf) format("opentype");
-</pre>
-
-<h3 id="Values" name="Values">値</h3>
-
-- `&lt;url&gt; [ format( &lt;string&gt;# ) ]?`
- - : {{cssxref("&lt;url&gt;")}} と、続けて任意で <code id="format()">format()</code> 関数で URL で参照するフォントリソースの形式を記述して外部参照を指定します。形式のヒントには、知られているフォント形式を示す書式文字列をカンマで区切ったリストを指定します。ユーザーエージェントが指定した形式に対応していない場合は、フォントリソースをのダウンロードを飛ばします。形式のヒントが指定されていない場合は、フォントリソースはが常にダウンロードされます。
-- `&lt;font-face-name&gt;`
- - : <code id="local()">local()</code> を使用して、ローカルに導入されたフォントフェイスを、より大きなフォントファミリ内で単一のフォントフェイスを一意に識別する名前で指定します。任意で名前を引用符で囲むことができます。
-
-<h2 id="Description" name="Description">解説</h2>
-
-値は、外部参照またはローカルにインストールされたフォントフェイス名を、カンマで区切った優先度付きリストです。フォントが必要になった時、{{glossary("user agent", "ユーザーエージェント")}}はリスト上の参照を走査し、アクティブ化に成功した最初の物を使用します。無効なデータを持ったフォントや見つからないローカルのフォントは無視され、ユーザーエージェントはリスト上の次のフォントを読み込みます。
-
-CSS のその他の URL と同様に、相対 URL を使用することができ、この場合は `@font-face` 規則を含むスタイルシートの位置からの相対になります。 SVG フォントの場合、 URL は SVG フォント定義を含む文書内の要素を指します。要素への参照が省略された場合は、参照は最初に定義されたフォントを含みます。同様に、複数のフォントを持つフォントコンテナー形式では、 `@font-face` 規則で指定された一つだけを読み込みます。読み込むフォントを示すためにはフラグメント識別子を使用します。コンテナー形式がフラグメントで識別する方法を持たない場合は、1から始まる添字 (例えば "font-collection#1" が最初のフォント、 "font-collection#2" が二番目のフォント、など) が使用されます。
-
-<h2 id="Formal_definition" name="Formal_definition">公式定義</h2>
-
-{{cssinfo}}
-
-<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2>
-
-{{csssyntax}}
-
-## 例
-
-<h3 id="Specifying_font_resources_using_url_and_local" name="Specifying_font_resources_using_url_and_local">url() と local() を使用したフォントリソースの指定</h3>
-
-<pre class="brush: css notranslate">@font-face {
- font-family: examplefont;
- src: local(Example Font),
- url('examplefont.woff') format("woff"),
- url('examplefont.otf') format("opentype");
-}
-</pre>
-
-## 仕様書
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">状態</th>
- <th scope="col">備考</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('CSS3 Fonts', '#src-desc', 'src')}}</td>
- <td>{{Spec2('CSS3 Fonts')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-{{Compat("css.at-rules.font-face.src")}}
-
-## 関連情報
-
-<ul>
-- {{cssxref("@font-face/font-display", "font-display")}}
-- {{cssxref("@font-face/font-family", "font-family")}}
-- {{cssxref("@font-face/font-stretch", "font-stretch")}}
-- {{cssxref("@font-face/font-style", "font-style")}}
-- {{cssxref("@font-face/font-weight", "font-weight")}}
-- {{cssxref("@font-face/font-variant", "font-variant")}}
-- {{cssxref("font-feature-settings", "font-feature-settings")}}
-- {{cssxref("@font-face/font-variation-settings", "font-variation-settings")}}
-- {{cssxref("@font-face/unicode-range", "unicode-range")}}
-</ul>