使用 CSS 为动画设置一个缓慢开始、然后快速进行、最后缓慢结束的步骤


使用 animation-timing-function 属性,使用 ease 值来通过 CSS 为动画设置一个缓慢开始、然后快速进行、最后缓慢结束的步骤

示例

实际演示

<!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 {
            from {left: 100px;}
            to {left: 200px;}
         }
         #demo1 {animation-timing-function: ease;}
      </style>
   </head>
   <body>
      <div id = "demo1">ease effect</div>
   </body>
</html>

更新于:2020 年 6 月 24 日

1 千+ 浏览

启动您的 职业生涯

完成本课程以获取认证

开始
广告