元素平移动画

300 阅读1分钟
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8" />
  <title>小车动画</title>
  <style type="text/css">
    @keyframes mytranslate {
      0% {}

      100% {
        transform: translateX(160px);
      }
    }

    #ball {
      width: 200px;
      height: 200px;
      border: 1px solid silver;
      background-color: red;

      animation-name: mytranslate;
      animation-duration: 2s;
      animation-timing-function: linear;
      animation-fill-mode: forwards;
    }
  </style>
</head>

<body>
  <div id="ball"></div>
</body>

</html>