From f2eba31decfc1bb08b0218c1f32f429834c9f85b Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 1 Feb 2022 23:31:20 +0900 Subject: 2021/08/13 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/offset-distance/index.md | 108 ++++++++++++++++-------------- 1 file changed, 57 insertions(+), 51 deletions(-) (limited to 'files/ja/web/css/offset-distance') diff --git a/files/ja/web/css/offset-distance/index.md b/files/ja/web/css/offset-distance/index.md index d2493d811a..90abb24fe1 100644 --- a/files/ja/web/css/offset-distance/index.md +++ b/files/ja/web/css/offset-distance/index.md @@ -3,58 +3,72 @@ title: offset-distance slug: Web/CSS/offset-distance tags: - CSS - - CSS Motion Path - - CSS Property - - CSS プロパティ - CSS モーションパス - - Experimental - - Motion Path - - Reference + - CSS プロパティ + - 実験的 + - モーションパス + - リファレンス - motion-offset - offset-distance - - 'recipe:css-property' - - モーションパス + - recipe:css-property +browser-compat: css.properties.offset-distance translation_of: Web/CSS/offset-distance --- -
{{CSSRef}}
+{{CSSRef}} -

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

+**`offset-distance`** は CSS プロパティで、 {{CSSxRef("offset-path")}} 上の要素を配置する位置を指定します。 -
{{EmbedInteractiveExample("pages/css/offset-distance.html")}}
+{{EmbedInteractiveExample("pages/css/offset-distance.html")}} -

構文

+## 構文 -
/* 既定値 */
+```css
+/* 既定値 */
 offset-distance: 0;
 
 /* offset-path の途中 */
 offset-distance: 50%;
 
 /* パス上の固定距離の位置 */
-offset-distance: 40px;
+offset-distance: 40px; + +/* グローバル値 */ +offset-distance: inherit; +offset-distance: initial; +offset-distance: revert; +offset-distance: unset; +``` + +- `{{cssxref('<length-percentage>')}}` -
-
{{cssxref('<length-percentage>')}}
-
要素が ({{cssxref('offset-path')}} で定義された) パス上のどのくらいの距離にあるかを指定する長さです。
-
100% はパスの全長を表します。 (offset-path が基本シェイプまたは path() として定義されている場合)。
-
+ - : 要素が ({{cssxref('offset-path')}} で定義された) パス上のどのくらいの距離にあるかを指定する長さです。 -

形式文法

+ 100% はパスの全長を表します。 (`offset-path` が基本シェイプまたは `path()` として定義されている場合)。 -{{CSSSyntax}} +## 公式定義 -

+{{cssinfo}} -

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

+## 形式文法 -

HTML

+{{csssyntax}} -
<div id="motion-demo"></div>
-
+## 例 -

CSS

+### アニメーション内での offset-distance の使用 -
#motion-demo {
+CSS モーションパスのモーションアスペクトは、一般に `offset-distance` プロパティのアニメーションから来ています。要素をパス全体の上でアニメーションさせたい場合は、その {{cssxref('offset-path')}} を定義し、 `offset-distance` に `0%` から `100%` までを取るアニメーションを設定してください。
+
+#### HTML
+
+```html
+
+``` + +#### 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; @@ -69,33 +83,25 @@ offset-distance: 40px;
100% { offset-distance: 100%; } -} +} +``` + +#### 結果 -

結果

+{{EmbedLiveSample('Using_offset-distance_in_an_animation', '100%', 150)}} -

{{EmbedLiveSample('Examples', '100%', 150)}}

+## 仕様書 -

仕様書

+{{Specifications}} - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('Motion Path Level 1', '#offset-distance-property', 'offset-distance')}}{{Spec2('Motion Path Level 1')}}初回定義
+## ブラウザーの互換性 -

{{CSSInfo}}

+{{Compat}} -

ブラウザーの互換性

+## 関連情報 -

{{Compat("css.properties.offset-distance")}}

+- {{cssxref("offset")}} +- {{cssxref("offset-anchor")}} +- {{cssxref("offset-path")}} +- {{cssxref("offset-position")}} +- {{cssxref("offset-rotate")}} -- cgit v1.2.3-54-g00ecf