在 CSS margin-top 上执行动画


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

更新于: 25-6-2020

超过 1000 人次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告
© . All rights reserved.