小人行走的动画案例
Posted shangjun6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小人行走的动画案例相关的知识,希望对你有一定的参考价值。
小人行走动画的案例:
<!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>
这是我找的图片 找类似这样的 此图是我在梦幻西游中找的
以上是关于小人行走的动画案例的主要内容,如果未能解决你的问题,请参考以下文章