aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/layout_cookbook/pagination/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/layout_cookbook/pagination/index.html')
-rw-r--r--files/ja/web/css/layout_cookbook/pagination/index.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/css/layout_cookbook/pagination/index.html b/files/ja/web/css/layout_cookbook/pagination/index.html
new file mode 100644
index 0000000000..60821375f6
--- /dev/null
+++ b/files/ja/web/css/layout_cookbook/pagination/index.html
@@ -0,0 +1,85 @@
+---
+title: ページ付け
+slug: Web/CSS/Layout_cookbook/Pagination
+tags:
+ - CSS
+ - Layout
+ - cookbook
+ - flexbox
+ - pagination
+translation_of: Web/CSS/Layout_cookbook/Pagination
+---
+<p>{{CSSRef}}</p>
+
+<p class="summary">この料理帳のパターンは、ページ付け(pagination)を表示するために使用されるナビゲーションのパターンを示し、ユーザーは検索結果などのコンテンツのページ間を移動できます。</p>
+
+<p><img alt="ページ付きリスト内のページのセットへのリンク" src="https://mdn.mozillademos.org/files/16279/pagination.png" style="height: 192px; width: 950px;"></p>
+
+<h2 id="Requirements" name="Requirements">要件</h2>
+
+<p>ページ付けのパターンは通常、項目を1行に表示します。 スクリーンリーダーを使用している人がページ付けであることを理解できるようにするために、項目を {{htmlelement("nav")}} 要素内のリストとしてマークアップし、CSS を使用してレイアウトを視覚的に1行として表示します。</p>
+
+<p>通常、ページ付けのコンポーネントはコンテンツの下側にあり、水平方向の中央に配置されます。</p>
+
+<h2 id="Recipe" name="Recipe">レシピ</h2>
+
+<p>{{EmbedGHLiveSample("css-examples/css-cookbook/pagination.html", '100%', 720)}}</p>
+
+<div class="note">
+<p><a href="https://github.com/mdn/css-examples/blob/master/css-cookbook/pagination--download.html">この例をダウンロードする</a></p>
+</div>
+
+<h2 id="Choices_made" name="Choices_made">行った選択</h2>
+
+<p>このパターンは、<a href="/ja/docs/Web/CSS/CSS_Flexible_Box_Layout">フレックスボックス</a>を使用してレイアウトされています — 一方のフレックスコンテナは別のフレックスコンテナの中にネストされています。 {{htmlelement("nav")}} 要素は、{{cssxref("justify-content")}} プロパティを使用してリストを中央に配置できるように、フレックスコンテナとして指定されています。</p>
+
+<p>リスト自体も、項目を行としてレイアウトするためのフレックスコンテナになります。 項目を配置するために、フレックス項目には {{cssxref("margin")}} を使用します。</p>
+
+<h2 id="Alternative_methods" name="Alternative_methods">代替方法</h2>
+
+<p>{{cssxref("column-gap")}} プロパティがブラウザーに実装されると、項目の間隔を空けるためにマージンの代わりにこれを使用できます。</p>
+
+<pre class="brush: css">.pagination {
+  list-style: none;
+  margin: 0;
+  padding: 0;
+  display: flex;
+  column-gap: 2px;
+}
+</pre>
+
+<h2 id="Accessibility_concerns" name="Accessibility_concerns">アクセシビリティへの懸念</h2>
+
+<p>スクリーンリーダーを使用している人が、このナビゲーションが何をするのか、そしてリンクをクリックしたときにどこに行くのかを確実に理解できるようにしたいです。 これを手助けするために、<code>&lt;nav&gt;</code> 要素に <code>aria-label="pagination"</code> を追加しました。</p>
+
+<p>スクリーンリーダーによって読み取られるが視覚的に隠されている追加のコンテンツを追加し、ページング矢印に <code>aria-hidden</code> 属性を設定しました。</p>
+
+<p>このドキュメントの最後にある「関連情報」セクションには、関連するアクセシビリティのトピックへのリンクがあります。</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<p>さまざまなレイアウト方法が異なるブラウザーサポートを持っています。 使用されているプロパティの基本的なサポートの詳細については、以下の表を参照してください。</p>
+
+<div class="hidden">
+<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+
+<p><em>Include the compat data for key properties you used, as in the example below which includes align-items.</em></p>
+</div>
+
+<h4 id="justify-content" name="justify-content">justify-content</h4>
+
+<p>{{Compat("css.properties.justify-content")}}</p>
+
+<h4 id="column-gap_in_Flex_layout" name="column-gap_in_Flex_layout">フレックスレイアウトの column-gap</h4>
+
+<p>{{Compat("css.properties.column-gap.flex_context")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{Cssxref("justify-content")}}、{{Cssxref("column-gap")}}</li>
+ <li><a href="https://www.scottohara.me/blog/2018/05/05/hidden-vs-none.html">ARIA を知る: 「Hidden」対「None」</a>(英語)</li>
+ <li><a href="https://webaim.org/techniques/css/invisiblecontent/#techniques">スクリーンリーダーのユーザーには見えないコンテンツ</a>(英語)</li>
+ <li><a href="https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939">アクセシビリティを意識した CSS の書き方</a>(英語)(<a href="https://frasco.io/writing-css-with-accessibility-in-mind-4fc82b26aecb">日本語訳</a>)</li>
+ <li><a href="https://a11y-style-guide.com/style-guide/section-navigation.html#kssref-navigation-pagination">アクセシビリティ(a11y)スタイルガイド: ページ付け</a>(英語)</li>
+</ul>