CSS Animatable

❮ 前章へ 完全な CSS リファレンス 次のリファレンス ❯

定義と用法

いくつかの CSS プロパティは animatable です。 animatable とは、アニメーションやトランジションに使用することができることを意味します。

Animatable プロパティは 例えばサイズ、数値、パーセントや色のようなものを、ある値から他の値に徐々に変化させることができます。


ブラウザ・サポート

表中の数字は、完全に CSS アニメーションをサポートした最初のブラウザのバージョンです。

-webkit-、-moz-、-o- の後に続く数字は、接頭辞付きで動作した最初のバージョンです。

4.0 -webkit- 10.0 16.0
5.0 -moz-
4.0 -webkit- 15.0 -webkit-
12.1
12.0 -o-

背景色を赤から青にアニメーションします:

/* Code for Chrome, Safari and Opera */
@-webkit-keyframes mymove {
    from {background-color: red;}
    to {background-color: blue;}
}

/* Standard syntax */
@keyframes mymove {
    from {background-color: red;}
    to {background-color: blue;}
}
Try it Yourself ❯

Animatable プロパティ

これらのプロパティは、CSS で animatable です:

プロパティ
backgroundTry it
background-colorTry it
background-positionTry it
background-sizeTry it
borderTry it
border-bottomTry it
border-bottom-colorTry it
border-bottom-left-radiusTry it
border-bottom-right-radiusTry it
border-bottom-widthTry it
border-colorTry it
border-leftTry it
border-left-colorTry it
border-left-widthTry it
border-rightTry it
border-right-colorTry it
border-right-widthTry it
border-spacingTry it
border-topTry it
border-top-colorTry it
border-top-left-radiusTry it
border-top-right-radiusTry it
border-top-widthTry it
bottomTry it
box-shadowTry it
clipTry it
colorTry it
段数Try it
段の間隔Try it
段間の罫線Try it
column-rule-colorTry it
column-rule-widthTry it
column-widthTry it
columnsTry it
filterTry it
flex
flex-basisTry it
flex-growTry it
flex-shrinkTry it
fontTry it
font-sizeTry it
font-size-adjust
font-stretch
font-weightTry it
heightTry it
leftTry it
letter-spacingTry it
line-heightTry it
marginTry it
margin-bottomTry it
margin-leftTry it
margin-rightTry it
margin-topTry it
max-heightTry it
max-widthTry it
min-heightTry it
min-widthTry it
opacityTry it
orderTry it
outlineTry it
outline-colorTry it
outline-offsetTry it
outline-widthTry it
paddingTry it
padding-bottomTry it
padding-leftTry it
padding-rightTry it
padding-topTry it
perspectiveTry it
perspective-originTry it
rightTry it
text-decoration-colorTry it
text-indentTry it
text-shadowTry it
topTry it
transformTry it
transform-originTry it
vertical-alignTry it
visibility
widthTry it
word-spacingTry it
z-indexTry it


❮ 前章へ 完全な CSS リファレンス 次のリファレンス ❯