在 CSS margin-top 上执行动画

WBOY
WBOY 转载
2023-09-11 23:13:02 1045浏览

在 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>

以上就是在 CSS margin-top 上执行动画的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除