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