Home  >  Article  >  Web Front-end  >  Perform animation on CSS margin-top

Perform animation on CSS margin-top

WBOY
WBOYforward
2023-09-11 23:13:021635browse

在 CSS margin-top 上执行动画

To animate the margin-top property using CSS, you can try running the following code

Example

Live Demo

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

The above is the detailed content of Perform animation on CSS margin-top. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete