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

คุณสมบัติความกว้าง CSS เคลื่อนไหว


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 300px;
            height: 250px;
            background-color: maroon;
            color: white;
            animation: myanim 3s;
         }
         @keyframes myanim {
            30% {
               width: 500px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS width property</h1>
      <div>
         <h1>This is demo text!</h1>
      </div>
   </body>
</html>