Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 애니메이션이 한 주기를 완료하는 데 걸리는 시간 설정


애니메이션 지속 시간 사용 애니메이션이 한 주기를 완료하는 데 걸리는 시간을 설정하는 속성:

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background: red;
            animation-name: myanim;
            animation-duration: 2s;
         }
         @keyframes myanim {
            from {left: 0px; background-color: green;}
            to {left: 200px; background-color: blue;}
         }
      </style>
   </head>
   <body>
      <div> </div>
   </body>
</html>