ホームページ >ウェブフロントエンド >CSSチュートリアル >CSS を使用して、アニメーションが 1 サイクルを完了するまでにかかる時間を設定します
animation-duration プロパティを使用して、アニメーションが 1 サイクルを完了するまでにかかる時間を設定します:
オンライン デモ
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div> </div> </body> </html>
以上がCSS を使用して、アニメーションが 1 サイクルを完了するまでにかかる時間を設定しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。