Để triển khai hoạt ảnh trên thuộc tính background-color với CSS, bạn có thể thử chạy mã sau
Ví dụ
<!DOCTYPE html> <html> <head> <style> div { width: 400px; height: 300px; background: yellow; animation: myanim 3s infinite; } @keyframes myanim { 20% { background-color: maroon; } } </style> </head> <body> <div></div> </body> </html>