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

CSS 오른쪽 속성 애니메이션

<시간/>

오른쪽 에 애니메이션을 구현하려면 CSS를 사용하여 속성을 사용하면 다음 코드를 실행할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            position: absolute;
            right: 0;
            width: 300px;
            height: 200px;
            background-color: blue;
            animation: myanim 5s infinite;
         }
         @keyframes myanim {
            30% {
               right: 350px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS right property</h1>
      <div id = "demo">
         <h1>This is demo text.</h1>
      </div>
   </body>
</html>