console
<div id="wrapper">
<div class="zoombie">
</div>
</div>
* {
padding: 0px;
margin: 0px;
}
body,
html {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
body {
position: relative;
background-attachment: fixed;
}
.zoombie {
width: 200px;
height: 312px;
background-image: url("http://www.softwhy.com/data/attachment/portal/201703/21/090418lrutld5ary4lbz7z.png");
animation: play 1.8s steps(10) infinite;
}
@keyframes play {
from {
background-position: 0px;
}
to {
background-position: -2000px;
}
}
#wrapper {
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
}