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-property/index.html | 103 ++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 files/ja/web/css/transition-property/index.html (limited to 'files/ja/web/css/transition-property/index.html') diff --git a/files/ja/web/css/transition-property/index.html b/files/ja/web/css/transition-property/index.html new file mode 100644 index 0000000000..114e45fde5 --- /dev/null +++ b/files/ja/web/css/transition-property/index.html @@ -0,0 +1,103 @@ +--- +title: transition-property +slug: Web/CSS/transition-property +tags: + - CSS + - CSS Property + - CSS Transitions + - Reference + - 'recipe:css-property' +translation_of: Web/CSS/transition-property +--- +
{{CSSRef}}
+ +

transition-propertyCSS のプロパティで、トランジション効果を適用する CSS プロパティを指定します。

+ +
{{EmbedInteractiveExample("pages/css/transition-property.html")}}
+ + + +
注: アニメーション可能なプロパティのセットは変更される可能性があります。これにより、将来意図しない結果を引き起こす可能性があるため、リストで現状アニメーションしないとしているプロパティを使用することは避けてください。
+ +

一括指定プロパティ (例えば {{cssxref("background")}}) を指定すると、その個別指定のサブプロパティすべてをアニメーションさせることができます。

+ +

構文

+ +
/* キーワード値 */
+transition-property: none;
+transition-property: all;
+
+/* <custom-ident> 値 */
+transition-property: test_05;
+transition-property: -specific;
+transition-property: sliding-vertically;
+
+/* 複数の値 */
+transition-property: test1, animation4;
+transition-property: all, height, color;
+transition-property: all, -moz-specific, sliding;
+
+/* グローバル値 */
+transition-property: inherit;
+transition-property: initial;
+transition-property: unset;
+
+ +

+ +
+
none
+
どのプロパティもトランジションを行いません。
+
all
+
トランジションが可能なすべてのプロパティで、トランジションを行います。
+
{{cssxref("<custom-ident>")}}
+
値が変更されたとき、トランジション効果を適用するプロパティを識別する文字列です。
+
+ +

Formal definition

+ +

{{CSSInfo}}

+ +

Formal syntax

+ +
{{csssyntax}}
+ +

+ +

中心となる CSS トランジションの記事に、 CSS トランジションの例がいくつかあります。

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS3 Transitions', '#transition-property-property', 'transition-property')}}{{Spec2('CSS3 Transitions')}}初回定義
+ +

ブラウザーの互換性

+ + + +

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

+ +

関連情報

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