From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/transition/index.html | 108 +++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 files/ja/web/css/transition/index.html (limited to 'files/ja/web/css/transition/index.html') diff --git a/files/ja/web/css/transition/index.html b/files/ja/web/css/transition/index.html new file mode 100644 index 0000000000..0c17a379e7 --- /dev/null +++ b/files/ja/web/css/transition/index.html @@ -0,0 +1,108 @@ +--- +title: transition +slug: Web/CSS/transition +tags: + - CSS + - CSS Property + - CSS Transitions + - CSS プロパティ + - CSS 遷移 + - Reference +translation_of: Web/CSS/transition +--- +
{{CSSRef}}
+ +

CSStransition プロパティは、 {{cssxref("transition-property")}}、 {{cssxref("transition-duration")}}、 {{cssxref("transition-timing-function")}}、 {{cssxref("transition-delay")}} の一括指定プロパティです。

+ +
{{EmbedInteractiveExample("pages/css/transition.html")}}
+ + + +

{{原語併記("遷移", "transition")}} によって、要素の2つの状態間の変化を定義することができます。それぞれの状態は {{cssxref(":hover")}} や {{cssxref(":active")}} のような疑似クラスで定義するか、 JavaScript を使用して動的に設定します。

+ +

構文

+ +
/* 1つのプロパティへの適用 */
+/* プロパティ名 | 時間 */
+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つのプロパティへの適用 */
+transition: margin-right 4s, color 1s;
+
+/* 変化するすべてのプロパティへの適用 */
+transition: all 0.5s ease-out;
+
+/* グローバル値 */
+transition: inherit;
+transition: initial;
+transition: unset;
+
+ +

transition プロパティは、1つまたは複数の単体プロパティによる遷移を、コンマで区切って指定します。

+ +

それぞれの単体プロパティの遷移では、単体のプロパティ(または特別な値である all および none)に適用される遷移を記述します。記述は以下の通りです。

+ + + +

プロパティ値の一覧が同じ長さではない場合については、 how things are handled を参照してください。 つまり、実際にアニメーション化されているプロパティの数を超える余分な遷移の記述は無視されます。

+ +

構文形式

+ +
{{csssyntax}}
+ +

+ +

CSS transitions の記事に、トランジションの例がいくつかあります。

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書策定状況コメント
{{ SpecName('CSS3 Transitions', '#transition-shorthand-property', 'transition') }}{{ Spec2('CSS3 Transitions') }}初回定義
+ +

{{cssinfo}}

+ +

ブラウザー実装状況

+ + + +

{{Compat("css.properties.transition")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf