哪个 CSS 属性用于交替循环中运行动画?


使用 animation-direction 属性可以交替方向运行动画。该属性与 alternate animation 值一起使用以实现此目的。

示例

在线演示

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

更新于: 2020 年 6 月 23 日

131 次浏览

开启您的 职业生涯

完成课程并获得认证

开始
广告