使用 CSS 先反向再正向运行动画


使用 animation-direction 属性先反向然后正向运行动画。该属性与 alternate-reverse 动画值一起使用来实现此目的。

示例

演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: alternate-reverse;
            animation-iteration-count: 3;
         }
         @keyframes myanim {
            0% {background-color:green; left:0px; top:0px;}
            50% {background-color:maroon; left:100px; top:100px;}
            100% {background-color:gray; left:0px; top:0px;}
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

更新于:2020 年 6 月 24 日

2K+ 浏览量

开启你的 职业生涯

完成课程即可获得认证

开始学习
广告