ใช้ animation-delay คุณสมบัติเพื่อตั้งค่าการหน่วงเวลาสำหรับการเริ่มแอนิเมชั่นด้วย CSS
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน animation-delay ทรัพย์สิน −
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-delay: 2s; } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div></div> </body> </html>