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

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


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            border: 2px solid black;
            width: 300px;
            height: 100px;
            animation: myanim 5s infinite;
         }
         @keyframes myanim {
            30% {
               height: 400px;
            }
         }
      </style>
   </head>
   <body>
      <div>This is demo text</div>
   </body>
</html>