CSS animation-directin 属性


使用 animation-direction 属性来设置动画应向前播放、向后播放还是交替循环播放。

您可以尝试运行以下代码来实现 animation-direction 属性

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: reverse;
         }
         @keyframes myanim {
            from {
               background-color: green;
            }
            to {
               background-color: blue;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

更新于: 24-6 月 2020 年

128 次查看

开启你的职业生涯

完成该课程以获得认证

开始
广告