Home  >  Article  >  Web Front-end  >  How to animate a fill pattern using CSS

How to animate a fill pattern using CSS

王林
王林forward
2023-09-04 08:09:021333browse

如何使用 CSS 设置动画的填充模式

To set the fill mode of an animation using CSS, use the animation-fill-mode property. It has forward, backward, and bidirectional values.

You can try running the following code to set the fill mode of animation;

Example

Online demonstration

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background: red;
            animation-name: myanim;
            animation-duration: 2s;
            animation-fill-mode: forwards;
         }
         @keyframes myanim {
            from {left: 0px; background-color: green;}
            to {left: 200px; background-color: blue;}
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

The above is the detailed content of How to animate a fill pattern using CSS. 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