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

CSS를 사용하여 느린 끝으로 애니메이션 설정

<시간/>

애니메이션 타이밍 기능 사용 CSS를 사용하여 느린 끝으로 애니메이션을 설정하기 위한 easy-out 값이 있는 속성

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background-color: #808000;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: alternate-reverse;
            animation-iteration-count: 3;
         }
         @keyframes myanim {
            from {left: 100px;}
            to {left: 200px;}
         }
         #demo {animation-timing-function: ease-out;}
      </style>
   </head>
   <body>
      <div id = "demo">ease-out effect</div>
   </body>
</html>