คุณสมบัติชวเลขสำหรับตั้งค่าคุณสมบัติแอนิเมชั่นทั้งหมดคือ แอนิเมชัน . มันกำหนดระยะเวลาของแอนิเมชั่น ชื่อแอนิเมชั่น ฯลฯ
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อทำงานกับคุณสมบัติชวเลขภาพเคลื่อนไหว:
ตัวอย่าง
<!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>