在 CSS padding-top 属性上执行动画
要使用 CSS 在 padding-top 属性上实现动画,你可以尝试运行以下代码——
示例
<!DOCTYPE html> <html> <head> <style> div { width: 350px; height: 150px; outline: 3px solid maroon; animation: myanim 3s infinite; } @keyframes myanim { 30% { padding-top: 60px; } } </style> </head> <body> <h1>CSS padding-top property</h1> <div> </div> </body> </html>
广告