diff options
Diffstat (limited to 'files/ja/web/css/transition-property/index.html')
-rw-r--r-- | files/ja/web/css/transition-property/index.html | 103 |
1 files changed, 103 insertions, 0 deletions
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 +--- +<div>{{CSSRef}}</div> + +<p><strong><code>transition-property</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、<a href="/ja/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions">トランジション効果</a>を適用する CSS プロパティを指定します。</p> + +<div>{{EmbedInteractiveExample("pages/css/transition-property.html")}}</div> + +<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div> + +<div class="note"><strong>注:</strong> <a href="/ja/docs/Web/CSS/CSS_animated_properties">アニメーション可能なプロパティのセット</a>は変更される可能性があります。これにより、将来意図しない結果を引き起こす可能性があるため、リストで現状アニメーションしないとしているプロパティを使用することは避けてください。</div> + +<p>一括指定プロパティ (例えば {{cssxref("background")}}) を指定すると、その個別指定のサブプロパティすべてをアニメーションさせることができます。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="brush: css no-line-numbers notranslate">/* キーワード値 */ +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; +</pre> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code>none</code></dt> + <dd>どのプロパティもトランジションを行いません。</dd> + <dt><code>all</code></dt> + <dd>トランジションが可能なすべてのプロパティで、トランジションを行います。</dd> + <dt>{{cssxref("<custom-ident>")}}</dt> + <dd>値が変更されたとき、トランジション効果を適用するプロパティを識別する文字列です。</dd> +</dl> + +<h2 id="Formal_definition">Formal definition</h2> + +<p>{{CSSInfo}}</p> + +<h2 id="Formal_syntax">Formal syntax</h2> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="Examples" name="Examples">例</h2> + +<p>中心となる <a href="/ja/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions">CSS トランジション</a>の記事に、 CSS トランジションの例がいくつかあります。</p> + +<h2 id="Specifications" name="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-property-property', 'transition-property')}}</td> + <td>{{Spec2('CSS3 Transitions')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<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.transition-property")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions">CSS トランジションの使用</a></li> + <li>{{cssxref('transition')}}</li> + <li>{{cssxref('transition-duration')}}</li> + <li>{{cssxref('transition-timing-function')}}</li> + <li>{{cssxref('transition-delay')}}</li> + <li>{{domxref("TransitionEvent")}}</li> +</ul> |