animation-iteration-count 속성을 사용하여 CSS
라이브 데모
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-direction: alternate-reverse; animation-iteration-count: 3; } @keyframes myanim { from {left: 100px;} to {left: 200px;} } #demo1 {animation-timing-function: ease;} #demo2 {animation-timing-function: ease-in;} </style> </head> <body> <div id = "demo1">ease effect</div> <div id = "demo2">ease-in effect</div> </body> </html>를 통해 애니메이션이 재생되어야 하는 횟수를 설정하세요.
위 내용은 CSS를 사용하여 애니메이션 재생 시간 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!