Computer >> Máy Tính >  >> Lập trình >> CSS

Tạo hình ảnh động cho phác thảo CSS

Để triển khai hoạt ảnh trên thuộc tính outline với CSS, bạn có thể thử chạy đoạn mã sau:

Ví dụ

<!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>