모든 애니메이션 속성을 설정하는 약식 속성은 animation입니다. 애니메이션 지속 시간, 애니메이션 이름 등을 설정합니다.
다음 코드를 실행하여 애니메이션 속기 속성을 사용해 볼 수 있습니다.
Live Demo
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation: myanim 2s } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div></div> </body> </html>
위 내용은 CSS를 사용하여 모든 애니메이션 속성에 대한 단축 속성 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!