diff options
Diffstat (limited to 'files/ja/web/css/@media/shape')
-rw-r--r-- | files/ja/web/css/@media/shape/index.html | 92 | ||||
-rw-r--r-- | files/ja/web/css/@media/shape/index.md | 80 |
2 files changed, 80 insertions, 92 deletions
diff --git a/files/ja/web/css/@media/shape/index.html b/files/ja/web/css/@media/shape/index.html deleted file mode 100644 index ad416d5324..0000000000 --- a/files/ja/web/css/@media/shape/index.html +++ /dev/null @@ -1,92 +0,0 @@ ---- -title: shape -slug: Web/CSS/@media/shape -tags: - - '@-規則' - - '@media' - - At-rule - - CSS - - Reference - - メディア特性 -translation_of: Web/CSS/@media/shape ---- -<div>{{CSSRef}} {{ Non-standard_header }}</div> - -<p><code>shape</code> は <a href="/ja/docs/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Media_Queries/Using_media_queries#Media_features">メディア特性</a>で、端末の形状が矩形であるか丸いディスプレイであるかを区別するために使用することができます。</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<p><code>shape</code> は識別機能であり、四角い画面を表す <code>rect</code> または丸や楕円の画面を表す <code>round</code> の二つの文字列のうちの一つで指定します。</p> - -<dl> - <dt><code><dfn>rect</dfn></code></dt> - <dd>形状は長方形か正方形、または角丸矩形などの軸であり、伝統的なデザインが適しています。</dd> - <dt><code><dfn>round</dfn></code></dt> - <dd>形状は丸や、卵型、楕円などの円に似た形状であり、独特の丸いデザインが適しています。</dd> -</dl> - -<h2 id="Examples" name="Examples">例</h2> - -<div class="blockIndicator note"> -<p><strong>注:</strong> 現在この特性に対応しているブラウザーはありません。</p> -</div> - -<h3 id="Basic_example" name="Basic_example">基本的な例</h3> - -<h4 id="HTML" name="HTML">HTML</h4> - -<pre class="brush: html notranslate"><h1>Hello World!</h1> -</pre> - -<h4 id="CSS" name="CSS">CSS</h4> - -<pre class="brush: css notranslate">h1 { - text-align: left; -} - -@media (shape: rect) { - h1 { - text-align: left; - } -} - -@media (shape: round) { - h1 { - text-align: center; - } -} -</pre> - -<h3 id="Custom_stylesheet" name="Custom_stylesheet">カスタムスタイルシート</h3> - -<p>この HTML は、丸い画面を持つ端末に特殊なスタイルシートを適用します。</p> - -<pre class="brush: html notranslate"><code><head> - <link rel="stylesheet" href="default.css" /></code> -<code> <link media="screen and (shape: rect)" rel="stylesheet" href="rectangle.css" /> - <link media="screen and (shape: round)" rel="stylesheet" href="round.css" /> -</head> -</code></pre> - -<h2 id="Specification" name="Specification">仕様書</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td><a href="https://drafts.csswg.org/css-round-display/">CSS Round Display Level 1</a></td> - <td>草稿</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.at-rules.media.shape")}}</p> diff --git a/files/ja/web/css/@media/shape/index.md b/files/ja/web/css/@media/shape/index.md new file mode 100644 index 0000000000..dfbe1c08a0 --- /dev/null +++ b/files/ja/web/css/@media/shape/index.md @@ -0,0 +1,80 @@ +--- +title: shape +slug: Web/CSS/@media/shape +tags: + - '@media' + - CSS + - リファレンス + - メディア特性 +browser-compat: css.at-rules.media.shape +translation_of: Web/CSS/@media/shape +--- +{{CSSRef}} + +`shape` は [CSS](/ja/docs/Web/CSS) の[メディア特性](/ja/docs/Web/CSS/@media#メディア特性)で、端末の形状が矩形であるか丸いディスプレイであるかを区別するために使用することができます。 + +## 構文 + +`shape` は識別機能であり、四角い画面を表す `rect` または丸や楕円の画面を表す `round` の二つの文字列のうちの一つで指定します。 + +- `rect` + - : 形状は長方形か正方形、または角丸矩形などの軸であり、伝統的なデザインが適しています。 +- `round` + - : 形状は丸や、卵型、楕円などの円に似た形状であり、独特の丸いデザインが適しています。 + +## 例 + +### 基本的な例 + +<h4 id="HTML" name="HTML">HTML</h4> + +#### HTML + +```html +<h1>Hello World!</h1> +``` + +#### CSS + +```css +h1 { + text-align: left; +} + +@media (shape: rect) { + h1 { + text-align: left; + } +} + +@media (shape: round) { + h1 { + text-align: center; + } +} +``` + +### カスタムスタイルシート + +この HTML は、丸い画面を持つ端末に特殊なスタイルシートを適用します。 + +```html +<head> + <link rel="stylesheet" href="default.css" /> + <link media="screen and (shape: rect)" rel="stylesheet" href="rectangle.css" /> + <link media="screen and (shape: round)" rel="stylesheet" href="round.css" /> +</head> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [メディアクエリーの使用](/ja/docs/Web/CSS/Media_Queries/Using_media_queries) +- [@media](/ja/docs/Web/CSS/@media) |