Skip to content
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

[최권진] Sprint1 #8

Merged

Conversation

kwonjin2
Copy link
Collaborator

@kwonjin2 kwonjin2 commented Jan 8, 2025

요구사항

기본

  • 랜딩 페이지의 url path는 루트('/')로 설정합니다.
  • title은 "판다마켓"로 설정합니다.
  • 화면의 너비가 1920px 이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 커지도록 합니다.
  • 화면의 너비가 1920px 보다 작아질 때, "판다마켓" 로고의 왼쪽 여백 200px"로그인" 버튼의 오른쪽 여백 200px이 유지되고, 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 설정합니다.
  • 클릭으로 기능이 동작해야 하는 경우, 사용자가 클릭할 수 있는 요소임을 알 수 있도록 CSS 속성 cursor: pointer 로 설정합니다.
  • "판다마켓" 클릭 시 루트 페이지('/')로 이동합니다.
  • '로그인'버튼 클릭 시 로그인 페이지('/login')로 이동합니다 (빈 페이지)
  • "구경하러가기"버튼 클릭 시('/items')로 이동합니다.(빈 페이지)
  • "Privacy Policy", "FAQ"는 클릭 시 각각 Privacy 페이지('/privacy'), FAQ 페이지('/faq')로 이동합니다.(모두 빈 페이지)
  • 페이스북, 트위터, 유튜브, 인스타그램 아이콘을 클릭 시 각각의 홈페이지로 새로운 창이 열리면서 이동합니다.

심화

  • 사용자의 브라우저가 크고 작아짐에 따라 페이지의 요소간 간격, 요소의 크기, font-size 등 모든 크기와 관련된 값이 크고 작아지도록 설정해 보세요.(설정값은 자유입니다)

주요 변경사항

스크린샷

멘토에게

  • 심화 미션을 미디어 쿼리 없이 구현하려고 단위를 px에서 rem, %, vh, vw등으로 변환하려고 시도했다가 건드리지 말아야 할 것을 건드렸다는 생각에 포기하고 중도에 제출합니다.. 미디어 쿼리 없이 구현하려면 어떻게 하는지 궁금합니다!
  • 제가 잘 못한거 같은데 어떤 걸 잘못했는지 감이 잡히지 않아요. width, height, padding, margin, gap등등 어떨 때 px을 쓰고 어떨 때 %쓰고 이러한 단위를 적절하게 사용하는 방법을 모르겠어요..!

@kwonjin2 kwonjin2 added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Jan 8, 2025
@kwonjin2 kwonjin2 requested review from withyj-codeit and dongqui and removed request for withyj-codeit January 8, 2025 08:18
@kwonjin2 kwonjin2 added 순한맛🐑 마음이 많이 여립니다.. and removed 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. labels Jan 8, 2025
@kwonjin2 kwonjin2 self-assigned this Jan 8, 2025
Copy link
Collaborator

@dongqui dongqui left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

권진님 고생 많으셨습니다~!

대체로 잘 구현해주셨고 접근성이나 시멘틱을 좀 더 신경써주시면 더욱 좋을 거 같아요 :)

심화 미션을 미디어 쿼리 없이 구현하려고 단위를 px에서 rem, %, vh, vw등으로 변환하려고 시도했다가 건드리지 말아야 할 것을 건드렸다는 생각에 포기하고 중도에 제출합니다.. 미디어 쿼리 없이 구현하려면 어떻게 하는지 궁금합니다!
-> 우선 미디어 쿼리와 rem, %, vh, vw 등은 서로 상호 보완하는 관계이지 서로 대체하는 관계는 아닙니다 ㅎ 미디어 쿼리와 상관 없이 우선 각 단위가 어떤 식으로 동작하는지 명확하게 파악하시는 게 중요할 거 같아요! 부모 요소를 중심으로 크기를 맞추는지, 뷰포트를 중심으로 크기를 맞추는지, 여기서 뷰포트가 의미하는 것은 무엇인지 등 작은 것부터 학습해보시면 좋을 거 같습니다! 각 단위에 대한 학습이 이루어졌다면 요구 사항을 잘 살펴보세요. 요구 사항을 봤을 대 해당 요소의 크기나 간격이 고정되어야 할지, 아니면 화면 크기나 부모 요소의 크기에 따라 유동적이어야 하는지 판단하셔야 합니다 :)

제가 잘 못한거 같은데 어떤 걸 잘못했는지 감이 잡히지 않아요. width, height, padding, margin, gap등등 어떨 때 px을 쓰고 어떨 때 %쓰고 이러한 단위를 적절하게 사용하는 방법을 모르겠어요..!
-> 대체로 잘 하셨습니다! 사실 정답은 없습니다ㅎ 결과는 한 가지인데 방법은 많죠!
다만 확신을 가지시기 위해서는 위에 말씀드린대로 작은 것부터 명확하게 학습하시고 정말 권진님의 의도대로 되었는지 판단하실 수 있어야 합니다 :) 계속 감이 안 잡히면 같이 해보셔도 좋아요~

@@ -0,0 +1,132 @@
<!DOCTYPE html>
<html lang="en">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<html lang="ko"> lang에 신경써주세요.
SEO, 접근성에 도움이 됩니다!

<a href="/items.html" class="See">구경하러 가기</a>
</div>
</div>
<img src="./assets/main.png" alt="" class="main-img" />
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

img를 쓰실 때 alt를 넣어주시는 것이 접근성에 좋습니다!

<div class="second-page">
<img src="./assets/hot-item.png" alt="" />
<div class="text-box">
<p><span class="event-text">Hot item</span></p>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P는 문단을 나타내기 위해 사용됩니다! 여기서는 부적절한 거 같네요!

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

그리고 불필요한 중첩 같습니다!

<section>
<div class="landing-page">
<div class="landing-page-text">
<h2 class="large-text">일상의 모든 물건을 <br />거래해보세요</h2>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

h tag 는 계층 구조로 사용하시는 것이 접근성에 좋습니다! 지금은 h1 없이 h2가 바로 나왔네요 🤔

https://developer.mozilla.org/ko/docs/Web/HTML/Element/Heading_Elements#사용_일람

</div>
</section>

<section>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

section은 테마성을 가진 컨텐츠를 그룹핑할 때 사용됩니다! 단순레이아웃 요소라면 div를 써주세요!


<footer>
<div class="footer">
<p><span class="design">©codeit - 2024</span></p>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여기도 p가 불필요하게 중첩되어있네요!

}

.panda-logo-image {
width: 9.563rem;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rem 계산을 쉽계 하기 위해

html {
  font-size: 62.5%;
}

이런식으로 root의 font size를 설정해서 쓰기도 합니다~ :)

}

section {
padding: 0.1px;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아마 잘못 들어간 거 같네요!

<div class="landing-page">
<div class="landing-page-text">
<h2 class="large-text">일상의 모든 물건을 <br />거래해보세요</h2>
<div class="Seeflex">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

케이스는 한 가지로 통일 하시는 것이 좋습니다 :)
see-flex이런 식으로요! 그리고 좀 더 유의미한 클래스명을 지어주세요~!

gap: 10px;
}

#JACJAC {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이건 어떤 코드일까요??🤣

@dongqui dongqui changed the base branch from main to Basic-최권진 January 9, 2025 05:07
@dongqui
Copy link
Collaborator

dongqui commented Jan 9, 2025

main이 아니라 권진님 이름이 있는 브랜치로 pr 주셔야 합니다:) 이번엔 제가 수정했어요~~

@dongqui dongqui merged commit 9036b18 into codeit-bootcamp-frontend:Basic-최권진 Jan 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
순한맛🐑 마음이 많이 여립니다..
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants