인프런 커뮤니티 질문&답변

정원준님의 프로필 이미지
정원준

작성한 질문수

인터랙티브 웹 개발 제대로 시작하기

전진! 3D 스크롤 1

움직이는 캐릭터 예제로 클릭 이벤트 익혀보기-

작성

·

362

0

단순한 예제인데도 오류를 못찾겠습니다.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Interactive Web</title>
<link rel="stylesheet" href="02_02.css">
</head>
<body>
<div class="stage">
<div class="ilbuni"></div>
<div class="ilbuni"></div>
<div class="ilbuni"></div>
</div>
</body>
</html>

02_02.css
.stage {
position: relative;
width: 100vw;
height: 75vw;
background: #fff000;
}
.libuni {
position: absolute;
width: 100px;
height: 100px;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: contain;
}
.ilbuni:nth-of-type(1) {
left: 5%;
bottom: 5%;
background-image:url('ilbuni_0.png');
}
.ilbuni:nth-of-type(2) {
left: 10%;
bottom: 3%;
background-image:url('ilbuni_1.png');
}
.ilbuni:nth-of-type(3) {
left: 7%;
bottom: 10%;
background-image:url('ilbuni_2.png');
}
같은 공간에 웹파일과 이미지 같이 넣었습니다.
도와주세요 ㅠ

답변 3

1

1분코딩님의 프로필 이미지
1분코딩
지식공유자

앗 제가 답변을 못단 사이에^^;; 감사합니다 악어님!

1

안녕하세요.

시간이 많이 지나서 문제 해결하셨을것 같지만.... 클래스 명이 달라서 나오지 않는것 같아요.

libuni 를 ilbuni 로 수정해주세요.

아래와 같이 클래스명이 다릅니다.

.libuni {}

.ilbuni:nth-of-type(1) {}

0

정원준님의 프로필 이미지
정원준
질문자

감사합니다. ㅠㅠㅠ

정원준님의 프로필 이미지
정원준

작성한 질문수

질문하기