blob: 4a99a84424a128ef74d000cc385ea0f69f99786b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
---
title: overscroll-behavior-x
slug: Web/CSS/overscroll-behavior-x
tags:
- CSS
- CSS Box Model
- CSS Property
- Reference
- overscroll-behavior-x
- 'recipe:css-property'
translation_of: Web/CSS/overscroll-behavior-x
---
<div>{{CSSRef}}</div>
<p><span class="seoSummary"><strong><code>overscroll-behavior-x</code></strong> は CSS のプロパティで、スクロール領域の水平方向の境界に達したときのブラウザーの挙動を設定します。</span></p>
<p>全体的な説明は {{cssxref("overscroll-behavior")}} を参照してください。</p>
<pre class="brush:css no-line-numbers notranslate">/* キーワード値 */
overscroll-behavior-x: auto; /* 既定値 */
overscroll-behavior-x: contain;
overscroll-behavior-x: none;
/* グローバル値 */
overscroll-behavior-x: inherit;
overscroll-behavior-x: initial;
overscroll-behavior-x: unset;
</pre>
<h2 id="Syntax" name="Syntax">構文</h2>
<p><code>overscroll-behavior-x</code> プロパティは、次の値の一覧のうち一つのキーワードで指定します。</p>
<h3 id="Values" name="Values">値</h3>
<dl>
<dt><code>auto</code></dt>
<dd>スクロールの末端における既定の振る舞いが通常通りに発生します。</dd>
<dt><code>contain</code></dt>
<dd>この値が設定された要素の内部では、スクロールの末端における既定の振る舞いが見られますが、隣接するスクロール領域に対するスクロール連鎖はありません。例えば、基底となる要素はスクロールしません。</dd>
<dt><code>none</code></dt>
<dd>隣接するスクロール領域に対するスクロール連鎖はなく、スクロールの末端における既定の振る舞いが抑制されます。</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="Preventing_an_underlying_element_from_scrolling_horizontally" name="Preventing_an_underlying_element_from_scrolling_horizontally">背後にある要素が横にスクロールするのを防ぐ</h3>
<p>簡単な <a href="https://mdn.github.io/css-examples/overscroll-behavior/overscroll-behavior-x">overscroll-behavior-x の例</a> (<a href="https://github.com/mdn/css-examples/blob/master/overscroll-behavior/overscroll-behavior-x.html">ソースコード</a>も参照) の中で、一方がもう一方の中にある二つのブロックレベルボックスがあります。外側のボックスは広い {{cssxref("width")}} を持っているので、ページは水平にスクロールします。内側のボックスは width (と {{cssxref("height")}}) が小さく、ビューポート内にきちんと収まりますが、内容は広い <code>width</code> を持ち、水平にスクロールします。</p>
<p>既定では、内側のボックスがスクロールして境界に達すると、ページ全体がスクロールし始めますが、これはおそらく望ましくない動きです。これを防ぐために、内側のボックスに <code>overscroll-behavior-x: contain</code> を設定することができます。</p>
<pre class="brush: css notranslate">main > div {
height: 300px;
width: 500px;
overflow: auto;
position: relative;
top: 100px;
left: 100px;
overscroll-behavior-x: contain;
}</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS Overscroll Behavior', '#propdef-overscroll-behavior-x', 'overscroll-behavior-x')}}</td>
<td>{{Spec2('CSS Overscroll Behavior')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("css.properties.overscroll-behavior-x")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="https://developers.google.com/web/updates/2017/11/overscroll-behavior#demo">スクロールを制御する: 引いて更新や末端の効果のカスタマイズ</a></li>
<li>対応付けられる論理的プロパティ: {{cssxref("overscroll-behavior-inline")}}, {{cssxref("overscroll-behavior-block")}}</li>
</ul>
|