animation-duration 속성을 사용하여 애니메이션이 루프를 완료하는 데 걸리는 시간을 설정하세요.
온라인 데모
<!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를 사용하여 애니메이션이 한 주기를 완료하는 데 걸리는 시간 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!