要使用CSS在margin-top屬性上實作動畫,您可以嘗試執行以下程式碼
現場示範
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; animation: myanim 4s infinite; color: white; } @keyframes myanim { 30% { margin-top: 30px; } } </style> </head> <body> <h2>Heading One</h2> <div> This is demo text. </div> </body> </html>
以上是在 CSS margin-top 上執行動畫的詳細內容。更多資訊請關注PHP中文網其他相關文章!