aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/offset-distance/index.html
blob: f0c4b4f7e0aec7db2acd561405c08a49cda6c241 (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
100
101
102
103
---
title: offset-distance
slug: Web/CSS/offset-distance
tags:
  - CSS
  - CSS Motion Path
  - CSS Property
  - CSS プロパティ
  - CSS モーションパス
  - Experimental
  - Motion Path
  - Reference
  - motion-offset
  - offset-distance
  - 'recipe:css-property'
  - モーションパス
translation_of: Web/CSS/offset-distance
---
<div>{{CSSRef}}</div>

<p><strong><code>offset-distance</code></strong> は CSS プロパティで、 {{CSSxRef("offset-path")}} 上の要素を配置する位置を指定します。</p>

<div>{{EmbedInteractiveExample("pages/css/offset-distance.html")}}</div>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="brush: css notranslate">/* 既定値 */
offset-distance: 0;

/* offset-path の途中 */
offset-distance: 50%;

/* パス上の固定距離の位置 */
offset-distance: 40px;</pre>

<dl>
 <dt><code>{{cssxref('&lt;length-percentage&gt;')}}</code></dt>
 <dd>要素が ({{cssxref('offset-path')}} で定義された) パス上のどのくらいの距離にあるかを指定する長さです。</dd>
 <dd>100% はパスの全長を表します。 (<code>offset-path</code> が基本シェイプまたは <code>path()</code> として定義されている場合)。</dd>
</dl>

<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>

<pre class="syntaxbox notranslate">{{CSSSyntax}}</pre>

<h2 id="Examples" name="Examples"></h2>

<p>CSS モーションパスのモーションアスペクトは、一般に <code>offset-distance</code> プロパティのアニメーションから来ています。要素をパス全体の上でアニメーションさせたい場合は、その {{cssxref('offset-path')}} を定義し、 <code>offset-distance</code><code>0%</code> から <code>100%</code> までを取るアニメーションを設定してください。</p>

<h3 id="HTML">HTML</h3>

<pre class="brush: html notranslate">&lt;div id="motion-demo"&gt;&lt;/div&gt;
</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css notranslate">#motion-demo {
  offset-path: path('M20,20 C20,100 200,0 200,100');
  animation: move 3000ms infinite alternate ease-in-out;
  width: 40px;
  height: 40px;
  background: cyan;
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}</pre>

<h3 id="Result" name="Result">結果</h3>

<p>{{EmbedLiveSample('Examples', '100%', 150)}}</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('Motion Path Level 1', '#offset-distance-property', 'offset-distance')}}</td>
   <td>{{Spec2('Motion Path Level 1')}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<p>{{CSSInfo}}</p>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<p>{{Compat("css.properties.offset-distance")}}</p>