>웹 프론트엔드 >CSS 튜토리얼 >CSS를 사용하여 애니메이션을 실행해야 하는 횟수를 설정합니다.

CSS를 사용하여 애니메이션을 실행해야 하는 횟수를 설정합니다.

王林
王林앞으로
2023-08-28 10:53:171272검색

设置动画应使用 CSS 运行多少次

CSS를 사용하여 애니메이션을 실행해야 하는 횟수를 설정하려면 animation-iteration-count 속성을 사용하세요.

다음 콘텐츠 예에서는 애니메이션 개수를 2로 설정합니다.

Example

Live 데모

<!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>

위 내용은 CSS를 사용하여 애니메이션을 실행해야 하는 횟수를 설정합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제