
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
라이브서버로 보면 보이는데 깉허브에 업로드해서 볼때는 사진이 안뜨네요 ㅠㅠ
파일들은 바탕화면에 i 라는 이름으로 폴더만들어서 저장했어요..
<!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>
/* 이서윤체 폰트 적용을 위한 코드 */
@font-face {
font-family: "LeeSeoyun";
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2202-2@1.0/LeeSeoyun.woff")
format("woff");
font-weight: normal;
font-style: normal;
}
/* body태그 자체에 css 요소 부여 */
body {
font-family: "LeeSeoyun";
margin: 0;
display: flex;
justify-content: center;
background-image: url("./background.png");
}
/* 너비는 390픽셀이구, 배경색이 좀 필요하고 부모(body) 높이 전체를 쓸거야 */
.container {
width: 390px;
background-color: #ff9d73;
height: 100%;
}
/* 위로 여유가 30픽셀 정도 있었으면 좋겠네 */
.photos {
margin-top: 30px;
}
/* 배경은 알아보기 쉽게 흰색으로 해주고, 좌우 마진은 20픽셀 */
/* 상하 마진은 15픽셀로 해줘. 높이는 각 사진마다 200 픽셀로!*/
.photo-frame {
background-color: white;
margin: 15px 20px;
height: 200px;
background-size: cover;
position: relative;
cursor: grab;
}
.footer {
display: flex;
flex-direction: column;
align-items: center;
}
.f-title {
color: white;
font-size: 25px;
font-weight: 900;
}
.f-date {
color: white;
font-size: 15px;
font-weight: 500;
}
#image1 {
background-image: url('./img1.png');
}
#image2 {
background-image: url('./img2.png');
}
#image3 {
background-image: url('./img3.png');
}
#image4 {
background-image: url('./img4.png');
}
.photo_descrription {
color: white;
background-color: black;
width: fit-content;
padding: 0 10px;
margin-bottom: 10px;
border-radius: 10px;
position: absolute;
bottom: 0;
transform: translate(-50%);
left: 50%;
}
.video {
width: 100%;
height: 100%;
}
.video_descrription {
color: white;
background-color: black;
width: fit-content;
padding: 0 10px;
margin-bottom: 10px;
border-radius: 10px;
position: absolute;
bottom: 0;
transform: translate(-50%);
left: 50%;
}
</style>
<script>
// 클릭 기능
// 1. 선택된 사진의 숫자를 가진 텍스트를 alert 형태로 출력해줌
function alertText(number) {
if (number === 1) {
alert(`내 눈을 바라봐~ 넌 행복해지고~`);
}
else if (number === 2) {
alert(`어이? 어이가 없네 계셰끼가`);
}
else if (number === 3) {
alert(`눈깔 착하게 뜨고다녀 확 찢어버리기 전에`);
}
}
</script>
</head>
<body>
<div class="container">
<div class="photos">
<div id="image1" class="photo-frame"
onclick="alertText(1)"
>
<span id="desc1" class="photo_descrription">
정면샷
</span>
</div>
<div id="image2" class="photo-frame"
onclick="alertText(2)"
>
<span id="desc2" class="photo_descrription">
어이가 없네 샷
</span>
</div>
<div id="image3" class="photo-frame"
onclick="alertText(3)"
>
<span id="desc3" class="photo_descrription">
빰따구 확 찢어 벌라 샷
</span>
</div>
<div class="photo-frame">
<iframe
src="https://www.youtube.com/embed/TWz1btekxfs"
frameborder="0"
class="video"
></iframe>
<span id="desc4" class="video_descrription">
윙가르디움 레미오사
</span>
</div>
</div>
<div class="footer">
<p class="f-title">Happy Lunch Time</p>
<p class="f-date">2023.04.27</p>
</div>
</div>
</body>
</html>
