css3逐帧动画
Posted 桥逗码呆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css3逐帧动画相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>png 动画</title>
<style>
div {
/steps:为图片的总帧数,也就是说背景图里面有多少个多里的图片/
animation: 5s steps(23) 0s normal none infinite running ape_amb;
background-image: url("http://www.animalmade.com/files/css/../images/sprite/sprite-animal-ape.png");
background-position:-1821px center;
height: 217px;
margin-left: 210px;
width: 169px;
overflow:hidden;
}
@keyframes ape_amb {
0% {
background-position:0px center;
}
100% {
background-position: -5113px center;/**最后一张图片的位置
**/
}
}
</style>
</head>
<body>
</body>
<div>
</div>
</html>
以上是关于css3逐帧动画的主要内容,如果未能解决你的问题,请参考以下文章