animation-duration 속성은 애니메이션이 주기를 완료하는 데 필요한 시간을 초 또는 밀리초 단위로 정의하는 데 사용됩니다. 값이 0이면 애니메이션 효과가 없음을 의미합니다.
CSS3 animation-duration 속성
기능: animation-duration 속성은 애니메이션이 한 주기를 완료하는 데 필요한 시간을 초 또는 밀리초 단위로 정의합니다.
구문:
animation-duration: timetime: 애니메이션을 완료하는 데 걸리는 시간을 지정합니다. 기본값은 0이며 애니메이션 효과가 없음을 의미합니다.
참고: Internet Explorer 9 및 이전 버전은 animation-duration 속성을 지원하지 않습니다.
CSS3 animation-duration 속성 사용 예
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove infinite; animation-duration:2s; /* Safari and Chrome */ -webkit-animation:mymove infinite; -webkit-animation-duration:2s; } @keyframes mymove { from {top:0px;} to {top:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {top:0px;} to {top:200px;} } </style> </head> <body> <p><strong>注:</strong>Internet Explorer 9 以及更早的版本不支持 animation-name 属性。</p> <div></div> <p><b>注:</b>始终规定 animation-duration 属性,否则时长为 0,就不会播放动画了。</p> </body> </html>Rendering:
위 내용은 animation-duration 속성의 용도는 무엇인가요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!