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

CSS 개요 애니메이션

<시간/>

CSS로 아웃라인 속성에 애니메이션을 구현하려면 다음 코드를 실행해 보세요.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 550px;
            height: 350px;
            outline: 1px solid blue;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            50% {
               outline: 10px dashed orange;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS outline property</h1>
      <div> </div>
   </body>
</html>