모든 애니메이션 속성을 설정하는 약식 속성은 animation입니다. . 애니메이션 길이, 애니메이션 이름 등을 설정합니다.
다음 코드를 실행하여 Animation Shorthand 속성을 사용하는 방법을 배울 수 있습니다.
예시
<!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>