ホーム HTML CSS XML JAVASCRIPT   PHP SQL MORE...   リファレンス 事例集    

CSS3 animation-name プロパティ

CSS3 Reference 完全な CSS3 リファレンス

Specify a name for the @keyframes animation:

animation-name:mymove;
-webkit-animation-name:mymove; /*Safari and Chrome*/

Try it yourself »

ブラウザ・サポート

Internet Explorer Firefox Opera Google Chrome Safari

animation-name property is not supported in any browsers.

Safari and Chrome support an alternative, the -webkit-animation-name property.


定義と用法

animation-name property specifies a name for the @keyframes animation.

デフォルト値: none
継承: no
バージョン: CSS3
JavaScript構文: object.style.animationName="mymove"


構文

animation-name: keyframename|none;

説明
keyframename Specifies the name of the keyframe you want to bind to the selector
none Specifies that there will be no animation (can be used to override animations coming from the cascade)


関連ページ

CSS3 チュートリアル: CSS3 Animations


CSS3 Reference 完全な CSS3 リファレンス