美文网首页
2018-06-13

2018-06-13

作者: 老头子_d0ec | 来源:发表于2018-06-13 14:39 被阅读0次

人物走路动画

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>人物走路动画</title>
<style type="text/css">
.box{
width: 120px;
height: 182px;
border: 1px solid #000;
margin: 50px auto 0;
overflow: hidden;
position: relative;
}
.box img{
position: absolute;
left: 0;
top: 0;
/steps动画步数,图片有8帧,所以设置为8步/
animation: walking 1s steps(8) infinite;
}
@keyframes walking{
from{
left: 0px;
}
to{
left: -960px;
}
}
</style>
</head>
<body>
<div class="box">
<img src="img/walking.png" alt="人物走路">
</div>
</body>
</html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>人物走路动画</title>
<style type="text/css">
.box{
width: 120px;
height: 182px;
border: 1px solid #000;
margin: 50px auto 0;
overflow: hidden;
position: relative;
}
.box img{
position: absolute;
left: 0;
top: 0;
/steps动画步数,图片有8帧,所以设置为8步/
animation: walking 1s steps(8) infinite;
}
@keyframes walking{
from{
left: 0px;
}
to{
left: -960px;
}
}
</style>
</head>
<body>
<div class="box">
<img src="img/walking.png" alt="人物走路">
</div>
</body>
</html>

walking.png

自己想一一下自己平时怎末走路的

相关文章

  • 客服部新宙六月第二周周中检视

    2018-06-13 星期三 2018-06-13 一、工作方面 1/本周结案率要求达到55% 目前案件数量225...

  • 2018-06-13

    2018-06-13 2018-06-13 《六项精进》日精进打卡 姓名:张云飞 宁波市百雷仕电动工具有限公司 【...

  • webstorm 激活破解方法

    2018-06-13最新更新:最新License serve:https://s.tuzhihao.com:666...

  • 日精进打卡(第341天)

    2018-06-13 姓名:李义 公司:........ 组别:259期利他二组 【知~学习】 背诵 六项精进大纲...

  • 富贵花开3

    富贵花开 黄土高原的北战 2018-06-13 10:56 · 字数 3634 · 阅读 10 · 日记本 三:《...

  • 2018-06-13

    2018-06-13· 字数 546· 阅读 104· 日记本 姓名:周富强 公司:厦门大科机械有限公司 日精进打...

  • 2019在职MBA考试科目有哪些?什么时候考试?

    2019在职MBA考试科目有哪些?什么时候考试? 都学课堂 2018-06-13 浏览量: 15112 随着社会的...

  • 每日父母课堂分享

    日期 2018-06-13 分享内容 【我们每天都忙碌于具体的事务,真正用来思考的时间其实很少,甚至没有。】 而我...

  • 动机至善,私心了无

    2018-06-13 (稻盛哲学学习会)打卡第66天 姓名:祝新华 部门:业务部 组别:待定 【知~学习】 《京...

  • 2-3-8 SeekBar

    标注:本文为个人整理,仅做自己学习参考使用,请勿转载和转发2018-06-13: 初稿。参考博主coder-pig...

网友评论

      本文标题:2018-06-13

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