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

CSS 개요 오프셋 속성 애니메이션


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

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 350px;
            height: 150px;
            outline: 2px solid blue;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            50% {
              outline-offset: 50px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS outline-offset property</h1>
      <div> </div>
   </body>
</html>