<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
@keyframes move{
from{
background-position: 0px;
}
to{
background-position: -1680px;
}
}
@keyframes run{
from{
transform: translateX(0px);
}
to{
transform: translateX(800px);
}
}
.box{
/* background-color: green; */
width: 140px;
height: 140px;
/* border: 1px solid black; */
background-image: url(./bg.png);
animation: move 2s steps(12) infinite ,
run 2s infinite linear ;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>