CSS 动画方向属性


使用 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>

更新日期: 2020 年 6 月 24 日

128 次查看

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告