PHP前端开发

在 CSS margin-top 上执行动画

百变鹏仔 4周前 (09-19) #CSS
文章标签 动画

要使用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>