小人行走的动画案例

  小人行走动画的案例:

  <!DOCTYPE html>
  <html>
    <head>
      <meta charset="UTF-8">
      <title></title>
      <style>
        *{
          margin:0;
          padding:0;
        }
        .div{
          width:200px;
          height:180px;
          position:absolute;
          top:100px;
          left:100px;
          background:url(01.png) no-repeat;                                        /* 背景图片自己找  */
          animation:name 1.8s steps(8) infinite;         /* steps(8)  意思是 播放速度 逐帧播放   在css animation中有介绍  */
        }
        @-webkit-keyframes name{
          from{background-position-x:0px;}
          to{background-position-x:-1600px;}
        }
      </style>
    </head>
    <body>
      <div class="div"></div>
    </body>
  </html>

  这是我找的图片   找类似这样的   此图是我在梦幻西游中找的 

  

 

posted on 2019-04-14 09:08  Web引领者  阅读(939)  评论(0编辑  收藏  举报