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