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

คุณสมบัติชวเลข CSS นิเมชั่น


คุณสมบัติชวเลขสำหรับตั้งค่าคุณสมบัติแอนิเมชั่นทั้งหมดคือ แอนิเมชัน . มันกำหนดระยะเวลาของแอนิเมชั่น ชื่อแอนิเมชั่น ฯลฯ

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีทำงานกับคุณสมบัติ Animation Shorthand:

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            background-color: yellow;
            animation: myanim 2s
         }
         @keyframes myanim {
            from {
               background-color: green;
            }
            to {
               background-color: blue;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>