Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

เคลื่อนไหว CSS outline-width


ในการใช้แอนิเมชั่นกับคุณสมบัติ outline-width ด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้

ตัวอย่าง

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