diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-05 00:08:59 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-13 15:42:31 +0900 |
commit | ce4c4c52ab46ed108664ebc833eeab8d80bbe2f2 (patch) | |
tree | 1b3893a5742bd92fe40db5caeb6dddd38f04361e /files/ja/web/css/font-variant-east-asian/index.md | |
parent | 52f7699ca24d6e723a0c5f63478ca90705a65449 (diff) | |
download | translated-content-ce4c4c52ab46ed108664ebc833eeab8d80bbe2f2.tar.gz translated-content-ce4c4c52ab46ed108664ebc833eeab8d80bbe2f2.tar.bz2 translated-content-ce4c4c52ab46ed108664ebc833eeab8d80bbe2f2.zip |
CSS Font 系のプロパティ文書の更新準備
Diffstat (limited to 'files/ja/web/css/font-variant-east-asian/index.md')
-rw-r--r-- | files/ja/web/css/font-variant-east-asian/index.md | 184 |
1 files changed, 184 insertions, 0 deletions
diff --git a/files/ja/web/css/font-variant-east-asian/index.md b/files/ja/web/css/font-variant-east-asian/index.md new file mode 100644 index 0000000000..4c37b35a16 --- /dev/null +++ b/files/ja/web/css/font-variant-east-asian/index.md @@ -0,0 +1,184 @@ +--- +title: font-variant-east-asian +slug: Web/CSS/font-variant-east-asian +tags: + - CSS + - CSS Fonts + - CSS Property + - NeedsLiveSample + - Reference + - 'recipe:css-property' + - 日本語処理 +translation_of: Web/CSS/font-variant-east-asian +--- +<div>{{CSSRef}}</div> + +<p>CSS の <strong><code>font-variant-numeric</code></strong> プロパティは、日本語と中国語のような東アジアの字形の違いを制御するために使用します。</p> + +<pre class="brush:css no-line-numbers notranslate">font-variant-east-asian: normal; +font-variant-east-asian: ruby; +font-variant-east-asian: jis78; /* <east-asian-variant-values> */ +font-variant-east-asian: jis83; /* <east-asian-variant-values> */ +font-variant-east-asian: jis90; /* <east-asian-variant-values> */ +font-variant-east-asian: jis04; /* <east-asian-variant-values> */ +font-variant-east-asian: simplified; /* <east-asian-variant-values> */ +font-variant-east-asian: traditional; /* <east-asian-variant-values> */ +font-variant-east-asian: full-width; /* <east-asian-width-values> */ +font-variant-east-asian: proportional-width; /* <east-asian-width-values> */ +font-variant-east-asian: ruby full-width jis83; + +/* グローバル値 */ +font-variant-east-asian: inherit; +font-variant-east-asian: initial; +font-variant-east-asian: unset; +</pre> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code>normal</code></dt> + <dd>このキーワードは、別形式の表記の使用を無効にします。</dd> + <dt><code>ruby</code></dt> + <dd>このキーワードは、ルビ文字のための特殊な表記の使用を強制します。ふつうは小さめで、フォントの作者がよく特定の形状でデザインし、ふつうはコントラストを上げるためにわずかに太くします。このキーワードは OpenType の <code>ruby</code> の値に対応します。</dd> + <dt><code><east-asian-variant-values></code></dt> + <dd>これらの値は、表示に使用される字形の違いのセットを指定します。利用可能な値は以下の通りです。 + <table class="standard-table"> + <tbody> + <tr> + <th>キーワード</th> + <th>標準による形状の定義</th> + <th>OpenType の対応</th> + </tr> + <tr> + <td><code>jis78</code></td> + <td><a href="http://ja.wikipedia.org/wiki/JIS_X_0208#第1次規格">JIS X 0208:1978</a></td> + <td><code>jp78</code></td> + </tr> + <tr> + <td><code>jis83</code></td> + <td><a href="http://ja.wikipedia.org/wiki/JIS_X_0208#第2次規格">JIS X 0208:1983</a></td> + <td><code>jp83</code></td> + </tr> + <tr> + <td><code>jis90</code></td> + <td><a href="http://ja.wikipedia.org/wiki/JIS_X_0208#第3次規格">JIS X 0208:1990</a></td> + <td><code>jp90</code></td> + </tr> + <tr> + <td><code>jis04</code></td> + <td><a href="http://ja.wikipedia.org/wiki/JIS_X_0213">JIS X 0213:2004</a></td> + <td><code>jp04</code></td> + </tr> + <tr> + <td><code>simplified</code></td> + <td>なし。簡体字中国語の字形を使用</td> + <td><code>smpl</code></td> + </tr> + <tr> + <td><code>traditional</code></td> + <td>なし。繁体字中国語の字形を使用</td> + <td><code>trad</code></td> + </tr> + </tbody> + </table> + </dd> + <dt><code><east-asian-width-values></code></dt> + <dd>これらの値は東アジアの文字の大きさを制御します。二つの値が利用できます。 + <ul> + <li><code>proportional-width</code> は、東アジアの文字の幅が多様なセットを有効にします。 OpenType の <code>pwid</code> の値に対応します。</li> + <li><code>full-width</code> は、東アジアの文字がすべて同じ、およそ正方形で、一定幅のセットを有効にします。 OpenType の <code>fwid</code> に対応します。</li> + </ul> + </dd> +</dl> + +<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> + +<p>{{cssinfo}}</p> + +<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> + +{{csssyntax}} + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Setting_East_Asian_glyph_variants" name="Setting_East_Asian_glyph_variants">東アジアの字形の変化形を設定</h3> + +<p>この例は OS に「游ゴシック」フォントがインストールされていることが必要で、ほかのフォントでは OpenType 機能に対応していない可能性があります。</p> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html notranslate"><table> +<thead></thead> +<tbody style="border:0;"> + <tr> + <th>normal/jis78:</th> + <td>麹町</td> + <td class="jis78">麹町</td> + </tr> + <tr> + <th>normal/ruby:</th> + <td>しんかんせん</td> + <td class="ruby">しんかんせん</td> + </tr> + <tr> + <th>normal/traditional:</th> + <td>大学</td> + <td class="traditional">大学</td> + </tr> +</tbody> +</table> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush:css notranslate">td{ + font-family:"Yu Gothic"; + font-size:20px; +} +th{ + color:grey; + padding-right:10px; +} + +.ruby { + font-variant-east-asian: ruby; +} + +.jis78 { + font-variant-east-asian: jis78; +} + +.traditional{ + font-variant-east-asian: traditional; +} + +</pre> + +<h4 id="Result" name="Result">結果</h4> + +<p>{{EmbedLiveSample('Setting_East_Asian_glyph_variants')}}</p> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th>仕様書</th> + <th>状況</th> + <th>備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Fonts', '#propdef-font-variant-east-asian', 'font-variant-east-asian')}}</td> + <td>{{Spec2('CSS3 Fonts')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("css.properties.font-variant-east-asian")}}</p> |