애니메이션 반복 횟수 사용 CSS로 애니메이션을 실행해야 하는 횟수를 설정하는 속성입니다.
다음 예는 애니메이션 수를 2로 설정합니다.
예시
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 150px;
height: 200px;
background-color: yellow;
animation-name: myanim;
animation-duration: 2s;
animation-iteration-count: 2;
}
@keyframes myanim {
from {
background-color: green;
}
to {
background-color: blue;
}
}
</style>
</head>
<body>
<div> </div>
</body>
</html>