ホームページ > 記事 > ウェブフロントエンド > CSSでアニメーションプロパティを実装する方法(コード付き)
この記事の内容はCSSでのアニメーション属性の実装方法(コード付き)です。必要な方は参考にしていただければ幸いです。
1. CSS アニメーションのプロパティは、サイズ、量、割合、位置、色など、ある値から別の値に徐々に変化します。
2. 実装方法:
1. アニメーションを定義します (slideOut はカスタムアニメーション名です)
@-webkit-keyframes slideOut{ 0%{top:-30px; opacity: 0;} 100%{top:0px; opacity: 1;} } @-moz-keyframes slideOut{ 0%{top:-30px; opacity: 0;} 100%{top:0px; opacity: 1;} } @-o-keyframes slideOut{ 0%{top:-30px; opacity: 0;} 100%{top:0px; opacity: 1;} } @-ms-keyframes slideOut{ 0%{top:-30px; opacity: 0;} 100%{top:0px; opacity: 1;} } @keyframes slideOut{ 0%{top:-30px; opacity: 0;} 100%{top:0px; opacity: 1;} }
2. アニメーションで使用される属性は、background/border/border/box-shadow/clip です。 /color/column/filter/flex/font/letter-spacing/line-height/margin/opacity/outline/perspective/text/vertical-align/visibility/word-spacing/z-index など、基本的には要素です。
関連する推奨事項:
CSS アニメーション - Transition_html/css_WEB-ITnose CSS アニメーション制作 - CSS animate以上がCSSでアニメーションプロパティを実装する方法(コード付き)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。