要在 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 属性的详细内容。