-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
뉴진스 홈페이지 #2
base: main
Are you sure you want to change the base?
뉴진스 홈페이지 #2
Conversation
하단 뉴진스 로고가 있는 이미지를 불러오고 그 위 텍스트 추가
뉴진스 카드와 목업에 패딩을 줘서 위치를 조정하고 뉴진스 카드에 있는 텍스트에 볼드를 줌
하단 아이콘 추가 및 상단 음악 박스 추가
멤버 다섯명 누르면 동영상으로 이동
member.html
Outdated
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Newjeans2</title> | ||
<link rel="stylesheet" href="./member.css"> | ||
<link src="./member.js"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
js파일이 없으니까 이 link는 빼도 될 것 같아요!
다른 파일도 마찬가지로 삭제하면 좋을 것 같아용~
</div> | ||
</div> | ||
<div class="home-image"> | ||
<a href="./main.html"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파일 이름을 다 수정하셨나용? html의 기본 파일은 index.html로 되어 있는 게 보통이라 index.html이 더 좋을 것 같아요~
<div class="background-image"> | ||
<div class="container"> | ||
<div class="character"> | ||
<a href="./dance.html"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dance.html으로 가게 했는데 지금 dance.html 파일의 형식이 dance로만 되어 있어서 제대로 가지지 않아용
수정하면 좋을 것 같아요~
과제하느라 수고하셨습니다. css와 html은 오아린이 코멘트로 추천을 많이해주셔서 저는 js 중심으로 보도록 할게요. 파일 이름을 더 효율적으로 짓고싶어요
JS 코드를 짤때 많이 어려웠어요
|
코드를 찾아보니 게시물이 두개가 있는데 이게 좌우로 스크롤되어야 하는 형식인데 기능 구현이 안되어 있던데 구현해주세요. |
const clock=document.getElementById("clock");
function getClock(){
const date = new Date()
const hour = String(date.getHours()).padStart(2,"0");
const minutes = String(date.getMinutes()).padStart(2,"0");
clock.innerText = `${hour}:${minutes}`;
}
getClock();
setInterval(getClock, 1000); 스크립트 안에 있는 코드는 js 파일로 옮기고 이거와 같은 코드는 해당 파일 연결후 함수 호출하는 형식으로 수정하는게 좋을거 같아요 |
이거를 구현할 때 CSS의 transform 속성 중 translateX라는 게 있는데 이거를 이용해 보면 좋을 것 같아요~ |
카드와 카드 텍스트와 이미지를 하나로 묶음
swiper-container 을 추가해 카드와 텍스트, 이미지를 하나로 묶음
시간이 흐르는 js 코드를 js 파일에 별도로 넣음 슬라이드가 되도록 하는 js 구현
📄 구현한 내용
뉴진스 홈페이지 클론코딩
🙋🏻 궁금한 점
🧐 해결한 것