안녕하세요
애니메이션 스탭이 먹히질 않는데 아무리 찾아봐도 이유를 모르겠어요..
계속 슬라이드처럼 스프라이트 이미지가 슝슝넘어갑니다. 뭐가 잘못된걸까요...
연관강의는 6강 animation3입니다.
<!DOCTYPE html>
<html lang="en">
<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>
.spaceship {
width: 150px;
height: 150px;
background: url('sprite_spaceship.png')no-repeat 0 0 / auto 150px;
animation: ani 1s steps(17) infinite;
/* animation: spaceship-ani 0.5s infinite steps(17); */
}
@keyframes ani {
0% {
background-position: 0 0;
}
100% {
background-position: -2250px 0;
}
}
</style>
</head>
<body>
<div class="spaceship"></div>
</body>
<script>
</script>
</html>
감사합니다 작동확인하였습니다