console
<div class="outer"></div>
*{
margin: 0;
padding: 0;
border: none;
}
body{
background-color: white;
}
.outer{
width: 140px;
height: 140px;
outline: 1px solid red;
background-image: url(https://hjd6633.oss-cn-hangzhou.aliyuncs.com/notes/html_css/merry-go-round/running.png);
background-repeat: no-repeat;
}
@keyframes run {
0% { background-position: 0 0;}
100% { background-position: -1680px 0;}
}
@keyframes move {
0% {transform: translateX(0);}
100% {transform: translateX(600px);}
}
.outer{
animation:
run 0.7s steps(12) infinite,
move 2s linear forwards;
}
.outer:hover{
animation-play-state: paused;
}