diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/offset-distance | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/css/offset-distance')
-rw-r--r-- | files/ja/web/css/offset-distance/index.html | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/files/ja/web/css/offset-distance/index.html b/files/ja/web/css/offset-distance/index.html new file mode 100644 index 0000000000..f0c4b4f7e0 --- /dev/null +++ b/files/ja/web/css/offset-distance/index.html @@ -0,0 +1,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('<length-percentage>')}}</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"><div id="motion-demo"></div> +</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> |