使用CSS设置动画是运行还是暂停

使用animation-play-state属性设置动画是通过CSS运行还是暂停。

您可以尝试运行以下代码来将动画设置为暂停:

示例

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