
현재 이미지를 클릭했을때 "0번째 추억이에요! 눌러주셔서 감사합니다 :)"와 마우스 포인터는 잘 나오는데
마우스를 이미지에 가까이 대면 넣은 자막이 표시가 안되고 있습니다..ㅠㅠ

작성한 코드 및 에러 메세지
<HTML>
<!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>
<link href="style.css" rel="stylesheet">
<script src="move.js"></script>
</head>
<body>
<div class="container">
<div class="photos">
<div id="image1" class="photo-frame"
onmouseover="hideText(1)"
onmouseout="showText(1)"
onclick="alertText(1)">
<span id="desc1" class="photo_description">
우리 작년 1월에 동해 갔을때 :)
</span>
</div>
<div id="image2" class="photo-frame"
onmouseover="hideText(2)"
onmouseout="showText(2)"
onclick="alertText(2)">
<span id="desc2" class="photo_description">
작년 크리스마스 파티 :)
</span>
</div>
<div id="image3" class="photo-frame"
onmouseover="hideText(3)"
onmouseout="showText(3)"
onclick="alertText(3)">
<span id="desc3" class="photo_description">
친구랑 싸웠을 때 위로해준 너 :)
</span>
</div>
<div id="image4" class="photo-frame">
<iframe
class="video"
src="https://www.youtube.com/embed/agYZbSt-3LY"
frameborder="0">
</iframe>
</div>
</div>
<div class="footer">
<p class="f-title">Happy Lunch Time</p>
<p class="f-date">2023.02.02</p>
</div>
</div>
</body>
</html>
<CSS>
/*외부의 폰트를 url 형식으로 가져와서 텍스트 스타일링 부여*/
@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 태그 영역*/
body{
font-family: "LeeSeoyun";
margin: 0;
display: flex;
justify-content: center;
background-image: url("background.png");
}
/*photos, photo-frame을 감싸는 전체적인 부분*/
.container{
width: 390px;
background-color: #ff9d73;
height: 100%;
}
.photos{
margin-top: 30px;
}
.photo-frame{
background-color: white;
margin: 15px 20px;
height: 200px;
background-size: cover;
position: relative;
cursor: pointer;
}
.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: 20px;
font-weight: 500;
}
/*이미지별 id 값*/
#image1{
background-image: url(./img1.png);
}
#image2{
background-image: url(./img2.png);
}
#image3{
background-image: url(./img3.png);
}
.video{
width: 100%;
height: 100%;
}
/*보여지는 텍스트*/
.showText{
opacity: 0;
}
/*감춰지는 텍스트*/
.hideText{
opacity: 0;
transition: opacity 0.5s linear;
}
/*사진 설명 글*/
.photo_description{
color: white;
background-color: black;
width: fit-content;
padding: 0 20px;
margin-bottom: 10px;
border-radius: 10px;
position: absolute;
bottom: 0;
transform: translate(-50%);
left: 50%;
opacity: 0;
}
<JavaScript>
// 텍스트가 보여지는 기능
// 1. 몇 번째 사진에 마우스가 올라갔는지 확인(if문)
// 2. 해당 사진을 찾아 hideText class를 지워주고, showText는 삽입해줌
function showText(number) {
if (number === 1) {
document.querySelector("#desc1").classList.remove("hideText");
document.querySelector("#desc1").classList.add("showText");
} else if (number === 2) {
document.querySelector("#desc2").classList.remove("hideText");
document.querySelector("#desc2").classList.add("showText");
} else {
document.querySelector("#desc3").classList.remove("hideText");
document.querySelector("#desc3").classList.add("showText");
}
}
// 텍스트가 감춰지는 기능
// 1. 몇 번째 사진에서 마우스가 벗어났는지 확인(if문)
// 2. 해당 사진을 찾아 shotText class를 지워주고, hideText는 삽입해줌
function hideText(number) {
if (number === 1) {
document.querySelector("#desc1").classList.remove("showText");
document.querySelector("#desc1").classList.add("hideText");
} else if (number === 2) {
document.querySelector("#desc2").classList.remove("showText");
document.querySelector("#desc2").classList.add("hideText");
} else {
document.querySelector("#desc3").classList.remove("showText");
document.querySelector("#desc3").classList.add("hideText");
}
}
// 클릭 기능
// 1. 선택된 사진의 숫자를 가진 텍스트를 alert 형태로 출력해줌
function alertText(number) {
alert(`${number}번째 추억이에요! 눌러주셔서 감사합니다 :)`);
}
