CSS를 사용하여 채우기 모드에 애니메이션을 적용하려면 animation-fill-mode 속성을 사용하세요. 순방향, 역방향 및 양방향 값이 있습니다.
다음 코드를 실행하여 애니메이션의 채우기 모드를 설정할 수 있습니다.
온라인 데모
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; animation-fill-mode: forwards; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div></div> </body> </html>
위 내용은 CSS를 사용하여 채우기 패턴에 애니메이션을 적용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!