在 CSS margin-top 上執行動畫
為了用 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>
廣告