css3动画 steps
每一帧的图片宽度是200px
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>animate css3 steps</title>
<style type="text/css">
.bajie{
width: 200px; height: 180px;
background: url('./o_bajie.png') no-repeat;
animation: run 1s steps(8) infinite;
}
/* background-position: - ( 200 * 8)px 0; */
@keyframes run {
0% {
background-position: 0 0;
}
100% {
background-position: -1600px 0;
}
}
</style>
</head>
<body>
<div class="bajie"></div>
</body>
</html>
网友评论