設定所有動畫屬性的簡寫屬性是animation。它設定動畫持續時間、動畫名稱等。
您可以嘗試執行以下程式碼來使用動畫簡寫屬性:
#現場示範
<!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>
以上是使用 CSS 設定所有動畫屬性的簡寫屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!