前端小作业~小人动画案例
  TEZNKK3IfmPf 2024年07月26日 41 0

前端小作业~小人动画案例

前端小作业~小人动画案例 

前端小作业~小人动画案例 


 <!DOCTYPE html>

<html lang="en">

<head>

 <meta charset="UTF-8">

 <meta name="viewport" content="width=device-width, initial-scale=1.0">

 <title>小人动画效果案例</title>

 <style>

  .one{

   position: relative;

  }

  .ren1{

   position: absolute;

   bottom: 0px;

   left: 0;

   width: 154px;

   height: 121px;

   background: url(imggc_6d0e9e5.png) no-repeat;

   animation: move 1s steps(2) infinite,move1 20s linear 0s infinite;

  }

  .ren2{

   position: absolute;

   bottom: 0px;

   left: 0;

   width: 165px;

   height: 176px;

   background: url(imggh_fee2457.png) no-repeat;

   animation: move 1s steps(2) infinite,move2 20s linear 2s infinite;

  }

  .ren3{

   position: absolute;

   bottom: 0px;

   left: 0;

   width: 161px;

   height: 149px;

   background: url(imggl_c15cfd8.png) no-repeat;

   animation: move 1s steps(2) infinite,move3 20s linear 4s infinite;

  }

  .ren4{

   position: absolute;

   bottom: 0px;

   left: 0;

   width: 185px;

   height: 157px;

   background: url(imggq_d281c9b.png) no-repeat;

   animation: move 1s steps(2) infinite,move4 20s linear 6s infinite;

  }

  @keyframes move{

   0%{

    left: -308px;

   }

   100%{

    background-position: -308px 0;

   }

  }

  @keyframes move1{

   0%{

    left: -150px;

   }

   100%{

    left: 1900px;

   }

  }

  @keyframes move2{

   0%{

    left: -300px;

   }

   100%{

    left: 1900px;

   }

  }

  @keyframes move3{

   0%{

    left: -450px;

   }

   100%{

    left: 1900px;

   }

  }

  @keyframes move4{

   0%{

    left: -600px;

   }

   100%{

    left: 1900px;

   }

  }

 <×yle>

</head>

<body>

 <div class="box">

  <div class="ren1"></div>

  <div class="ren2"></div>

  <div class="ren3"></div>

  <div class="ren4"></div>

 </div>

</body>

<cml>

【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2024年07月26日 0

暂无评论

推荐阅读
  TEZNKK3IfmPf   2024年08月09日   59   0   0 javascript前端
  TEZNKK3IfmPf   2024年07月27日   173   0   0 javascript前端
  TEZNKK3IfmPf   2024年07月27日   65   0   0 JavaSEhtml
TEZNKK3IfmPf