>  기사  >  웹 프론트엔드  >  CSS를 사용하여 애니메이션 재생 시간 설정

CSS를 사용하여 애니메이션 재생 시간 설정

WBOY
WBOY앞으로
2023-09-10 08:53:071025검색

使用 CSS 设置动画播放次数

animation-iteration-count 속성을 사용하여 CSS

라이브 데모

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: alternate-reverse;
            animation-iteration-count: 3;
         }
         @keyframes myanim {
            from {left: 100px;}
            to {left: 200px;}
         }
         #demo1 {animation-timing-function: ease;}
         #demo2 {animation-timing-function: ease-in;}
      </style>
   </head>
   <body>
      <div id = "demo1">ease effect</div>
      <div id = "demo2">ease-in effect</div>
   </body>
</html>
를 통해 애니메이션이 재생되어야 하는 횟수를 설정하세요.

위 내용은 CSS를 사용하여 애니메이션 재생 시간 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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