使用 CSS 為 background-color 屬性執行動畫
若要使用 CSS 動畫處理 background-color 屬性動畫,可以嘗試執行以下程式碼
示例
<!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>
廣告