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

애니메이션이 있는 CSS 최상위 속성


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

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            position: absolute;
            width: 300px;
            height: 200px;
            background-color: orange;
            color: white;
            top: 0;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               top: 300px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS top property</h1>
      <div>
         <h1>This is demo text!</h1>
      </div>
   </body>
</html>