애니메이션 방향 사용 애니메이션을 대체 방향으로 실행하는 속성입니다. 속성은 대체 애니메이션과 함께 사용됩니다. 이를 달성하기 위한 가치
예
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 150px;
height: 200px;
background-color: yellow;
animation-name: myanim;
animation-duration: 2s;
animation-direction: alternate;
animation-iteration-count: 3;
}
@keyframes myanim {
from {
background-color: green;
}
to {
background-color: blue;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>