在动画未播放时,设置元素的 CSS 样式


使用 animation-fill-mode 属性设置元素在动画不播放时的样式

示例

实时演示

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

更新于: 2020-06-24

85 次浏览

开拓您的 职业生涯

通过完成课程获得认证

开始
广告