aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-05-22 16:25:05 +0900
committerGitHub <noreply@github.com>2021-05-22 16:25:05 +0900
commitbbbd41a66995ce7892462521ac53e8a6bf4f1a99 (patch)
treeb2f911a66bcaf323d41cb1e967db474f9b650253 /files/ja/web
parent65bd11f3f64cd5867b0e53b27d1878dcf4532215 (diff)
downloadtranslated-content-bbbd41a66995ce7892462521ac53e8a6bf4f1a99.tar.gz
translated-content-bbbd41a66995ce7892462521ac53e8a6bf4f1a99.tar.bz2
translated-content-bbbd41a66995ce7892462521ac53e8a6bf4f1a99.zip
Web/CSS/transition を更新 (#737)
* Web/CSS/transition を更新 - 2021/03/16 時点の英語版に同期 * Web/CSS/transition を更新 いくつかの修正漏れを修正
Diffstat (limited to 'files/ja/web')
-rw-r--r--files/ja/web/css/transition/index.html122
1 files changed, 77 insertions, 45 deletions
diff --git a/files/ja/web/css/transition/index.html b/files/ja/web/css/transition/index.html
index 07c0ae2372..a260f7e864 100644
--- a/files/ja/web/css/transition/index.html
+++ b/files/ja/web/css/transition/index.html
@@ -6,21 +6,31 @@ tags:
- CSS Property
- CSS Transitions
- CSS プロパティ
- - CSS 遷移
+ - CSS トランジション
- Reference
+ - recipe:css-shorthand-property
translation_of: Web/CSS/transition
---
<div>{{CSSRef}}</div>
-<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>transition</code></strong> プロパティは、 {{cssxref("transition-property")}}、 {{cssxref("transition-duration")}}、 {{cssxref("transition-timing-function")}}、 {{cssxref("transition-delay")}} の<a href="/en-US/docs/Web/CSS/Shorthand_properties" title="/en-US/docs/CSS/Shorthand_properties">一括指定プロパティ</a>です。</p>
+<p><strong><code>transition</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、 {{cssxref("transition-property")}}、 {{cssxref("transition-duration")}}、 {{cssxref("transition-timing-function")}}、 {{cssxref("transition-delay")}} の<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定プロパティ</a>です。</p>
<div>{{EmbedInteractiveExample("pages/css/transition.html")}}</div>
-<p class="hidden">この対話型サンプルのソースファイルは GitHub リポジトリに格納されています。対話型サンプルプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p>
+<p>トランジション (transition) は、要素の 2 つの状態間の変化を定義するためのものです。それぞれの状態は {{cssxref(":hover")}} や {{cssxref(":active")}} のような<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>で定義されたり、 JavaScript を使用して動的に設定されたりします。</p>
-<p>{{原語併記("遷移", "transition")}} によって、要素の2つの状態間の変化を定義することができます。それぞれの状態は {{cssxref(":hover")}} や {{cssxref(":active")}} のような<a href="/en-US/docs/Web/CSS/Pseudo-classes" title="/en-US/docs/CSS/Pseudo-classes">疑似クラス</a>で定義するか、 JavaScript を使用して動的に設定します。</p>
+<h2 id="Constituent_properties">構成要素のプロパティ</h2>
-<h2 id="Syntax" name="Syntax">構文</h2>
+<p>このプロパティは以下の CSS プロパティの一括指定です。</p>
+
+<ul>
+ <li><a href="/ja/docs/Web/CSS/transition-delay"><code>transition-delay</code></a></li>
+ <li><a href="/ja/docs/Web/CSS/transition-duration"><code>transition-duration</code></a></li>
+ <li><a href="/ja/docs/Web/CSS/transition-property"><code>transition-property</code></a></li>
+ <li><a href="/ja/docs/Web/CSS/transition-timing-function"><code>transition-timing-function</code></a></li>
+</ul>
+
+<h2 id="Syntax">構文</h2>
<pre class="brush:css no-line-numbers">/* 1つのプロパティへの適用 */
/* プロパティ名 | 時間 */
@@ -29,10 +39,10 @@ transition: margin-right 4s;
/* プロパティ名 | 時間 | 遅延 */
transition: margin-right 4s 1s;
-/* プロパティ名 | 時間 | 時間関数 */
+/* プロパティ名 | 時間 | イージング関数 */
transition: margin-right 4s ease-in-out;
-/* プロパティ名 | 時間 | 時間関数 | 遅延 */
+/* プロパティ名 | 時間 | イージング関数 | 遅延 */
transition: margin-right 4s ease-in-out 1s;
/* 2つのプロパティへの適用 */
@@ -47,62 +57,84 @@ transition: initial;
transition: unset;
</pre>
-<p><code>transition</code> プロパティは、1つまたは複数の単体プロパティによる遷移を、コンマで区切って指定します。</p>
+<p><code>transition</code> プロパティは、 1 つまたは複数の単体プロパティによるトランジションを、コンマで区切って指定します。</p>
-<p>それぞれの単体プロパティの遷移では、単体のプロパティ(または特別な値である <code>all</code> および <code>none</code>)に適用される遷移を記述します。記述は以下の通りです。</p>
+<p>それぞれの単体プロパティのトランジションでは、単体のプロパティ (または特別な値である <code>all</code> および <code>none</code>) に適用されるトランジションを記述します。記述は以下の通りです。</p>
<ul>
- <li>遷移を適用するプロパティを表す0~1個の値。以下のうちの一つです。
- <ul>
- <li><code>none</code> キーワード</li>
- <li><code>all</code> キーワード</li>
- <li>CSS プロパティの名前である {{cssxref("&lt;custom-ident&gt;")}}</li>
- </ul>
- </li>
- <li>使用するタイミング関数を表す0~1個の {{cssxref("&lt;single-transition-timing-function&gt;")}} の値</li>
- <li>0~2個の {{cssxref("&lt;time&gt;")}} の値。1番目の値は {{cssxref("transition-duration")}} に割り当てられる時間として解釈され、2番目の値は {{cssxref("transition-delay")}} に割り当てられる時間として解釈されます。</li>
+ <li>トランジションを適用するプロパティを表す 0 ~ 1 個の値。以下のうちの一つです。
+ <ul>
+ <li><code>none</code> キーワード</li>
+ <li><code>all</code> キーワード</li>
+ <li>CSS プロパティの名前である {{cssxref("&lt;custom-ident&gt;")}}</li>
+ </ul>
+ </li>
+ <li>使用するイージング関数を表す 0 または 1 個の {{cssxref("&lt;easing-function&gt;")}} の値</li>
+ <li>0 ~ 2 個の {{cssxref("&lt;time&gt;")}} の値。 1 番目の値は {{cssxref("transition-duration")}} に割り当てられる時間として解釈され、 2 番目の値は {{cssxref("transition-delay")}} に割り当てられる時間として解釈されます。</li>
</ul>
-<p>プロパティ値の一覧が同じ長さではない場合については、 <a href="/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#When_property_value_lists_are_of_different_lengths" title="en/CSS/CSS transitions#When property value lists are of different lengths">how things are handled</a> を参照してください。 <span id="result_box" lang="ja"><span>つまり、実際にアニメーション化されているプロパティの数を超える余分な遷移の記述は無視されます。</span></span></p>
+<p>プロパティ値の一覧が同じ長さではない場合については、<a href="/ja/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#when_property_value_lists_are_of_different_lengths">プロパティ値のリストの長さが異なる場合</a>を参照してください。つまり、実際にアニメーション化されているプロパティの数を超える余分なトランジションの記述は無視されます。</p>
+
+<h2 id="Formal_definition">公式定義</h2>
-<h3 id="Formal_syntax" name="Formal_syntax">構文形式</h3>
+<p>{{CSSInfo}}</p>
+
+<h3 id="Formal_syntax">形式文法</h3>
{{csssyntax}}
-<h2 id="Examples" name="Examples">例</h2>
+<h2 id="Examples">例</h2>
-<p><a href="/ja/docs/Web/CSS/CSS_transitions" title="ja/CSS/CSS transitions">CSS transitions</a> の記事に、トランジションの例がいくつかあります。</p>
+<h3 id="Simple_example">単純な例</h3>
-<h2 id="Specifications" name="Specifications">仕様書</h2>
+<p>この例では、ユーザーが要素の上にカーソルを置いたときに、 1 秒間の遅延をつけて 4 秒間でフォントサイズの遷移を行います。</p>
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">策定状況</th>
- <th scope="col">コメント</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{ SpecName('CSS3 Transitions', '#transition-shorthand-property', 'transition') }}</td>
- <td>{{ Spec2('CSS3 Transitions') }}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush: html">&lt;a class="target"&gt;Hover over me&lt;/a&gt;</pre>
-<p>{{cssinfo}}</p>
+<h4 id="CSS">CSS</h4>
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+<pre class="brush: css">.target {
+ font-size: 14px;
+ transition: font-size 4s 1s;
+}
+
+.target:hover {
+ font-size: 36px;
+}
+</pre>
+
+<p>{{EmbedLiveSample('Simple_example', 600, 100)}}</p>
+
+<p><a href="/ja/docs/Web/CSS/CSS_Transitions">CSS transitions</a> の記事に、 CSS トランジションの例がいくつかあります。</p>
+
+<h2 id="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('CSS3 Transitions', '#transition-shorthand-property', 'transition') }}</td>
+ <td>{{ Spec2('CSS3 Transitions') }}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
-<div class="hidden">このページの互換性一覧表は構造化データから生成されます。データに協力したいのであれば、 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("css.properties.transition")}}</p>
-<h2 id="See_also" name="See_also">関連情報</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
- <li><a href="/ja/docs/Web/CSS/Using_CSS_transitions">CSS transitions の利用</a></li>
- <li>{{domxref("TransitionEvent")}}</li>
+ <li><a href="/ja/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions">CSS トランジションの使用</a></li>
+ <li>{{domxref("TransitionEvent")}}</li>
</ul>