使用 CSS 按两个方向展开动画属性


使用值bothanimation-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: both;
         }
         @keyframes myanim {
            from {left: 0px; background-color: green;}
            to {left: 200px; background-color: blue;}
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

更新于:2020 年 6 月 24 日

133 次浏览

开始你的 职业 生涯

完成课程,获得认证

开始
广告