要在 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中文网其他相关文章!