blob: 90abb24fe1ad397aa2d68b68fe413163de2035f6 (
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
104
105
106
107
|
---
title: offset-distance
slug: Web/CSS/offset-distance
tags:
- CSS
- CSS モーションパス
- CSS プロパティ
- 実験的
- モーションパス
- リファレンス
- motion-offset
- offset-distance
- recipe:css-property
browser-compat: css.properties.offset-distance
translation_of: Web/CSS/offset-distance
---
{{CSSRef}}
**`offset-distance`** は CSS プロパティで、 {{CSSxRef("offset-path")}} 上の要素を配置する位置を指定します。
{{EmbedInteractiveExample("pages/css/offset-distance.html")}}
## 構文
```css
/* 既定値 */
offset-distance: 0;
/* offset-path の途中 */
offset-distance: 50%;
/* パス上の固定距離の位置 */
offset-distance: 40px;
/* グローバル値 */
offset-distance: inherit;
offset-distance: initial;
offset-distance: revert;
offset-distance: unset;
```
- `{{cssxref('<length-percentage>')}}`
- : 要素が ({{cssxref('offset-path')}} で定義された) パス上のどのくらいの距離にあるかを指定する長さです。
100% はパスの全長を表します。 (`offset-path` が基本シェイプまたは `path()` として定義されている場合)。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### アニメーション内での offset-distance の使用
CSS モーションパスのモーションアスペクトは、一般に `offset-distance` プロパティのアニメーションから来ています。要素をパス全体の上でアニメーションさせたい場合は、その {{cssxref('offset-path')}} を定義し、 `offset-distance` に `0%` から `100%` までを取るアニメーションを設定してください。
#### HTML
```html
<div id="motion-demo"></div>
```
#### CSS
```css
#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%;
}
}
```
#### 結果
{{EmbedLiveSample('Using_offset-distance_in_an_animation', '100%', 150)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("offset")}}
- {{cssxref("offset-anchor")}}
- {{cssxref("offset-path")}}
- {{cssxref("offset-position")}}
- {{cssxref("offset-rotate")}}
|