通过 CSS 设置元素以保留最后一个关键帧设置的样式值


要设置元素以保留第一个关键帧设置的样式值,请将 animation-fill-mode 属性与 forwards 值配合使用。

示例

实时演示

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

更新日期:2020 年 6 月 24 日

136 次观看

开启你的 职业生涯

完成课程以获得认证

开始
广告