美文网首页
css3 animate动画 steps

css3 animate动画 steps

作者: IamaStupid | 来源:发表于2020-07-22 15:29 被阅读0次

css3动画 steps

每一帧的图片宽度是200px

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>animate css3 steps</title>
    <style type="text/css">
    .bajie{
      width: 200px; height: 180px;
      background: url('./o_bajie.png') no-repeat;
      animation: run 1s steps(8) infinite;
    }
    /* background-position: - ( 200 * 8)px 0; */
    @keyframes run {
      0% {
        background-position: 0 0;
      }
      100% {
        background-position: -1600px 0;
      }
    }
    </style>
  </head>
  <body>
    <div class="bajie"></div>
  </body>
</html>

相关文章

网友评论

      本文标题:css3 animate动画 steps

      本文链接:https://www.haomeiwen.com/subject/ktqtlktx.html