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 #5

Conversation

haksoo0918
Copy link
Collaborator

@haksoo0918 haksoo0918 commented Sep 6, 2024

요구사항

기본

체크리스트 [기본]

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

체크리스트 [심화]

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

스크린샷

image

멘토에게

  • 며칠 전에 작업해 놓고 이제 보니 수정할 곳이 보여 수정해서 다시 올립니다. :)

@haksoo0918 haksoo0918 added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Sep 6, 2024
Copy link
Collaborator

@arthurkimdev arthurkimdev left a comment

Choose a reason for hiding this comment

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

군더더기 없는 마크업 잘봤습니다. 수고하셨습니다~ 👍

Comment on lines +47 to +50
<ul class="links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
<ul class="links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
<nav aria-label="footer navigation">
<ul class="links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
<nav>

지금도 충분히 시멘틱하게 잘 해주셨지만, 네비게이션의 경우 메뉴를 nav 태그와 접근성을 위한 aria-label 까지 사용해주면 더 좋겠습니다. 웹표준을 따라 작성하면 문서의 구조와 의미를 보다 더 정확하게 검색엔진과 스크린리더에 전달할 수 있으니까요. 😄

Comment on lines +63 to +65
<a href="https://youtube.com/" target="_blank">
<img src="img/ico-youtube.png" alt="Youtube">
</a>
Copy link
Collaborator

@arthurkimdev arthurkimdev Sep 10, 2024

Choose a reason for hiding this comment

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

Suggested change
<a href="https://youtube.com/" target="_blank">
<img src="img/ico-youtube.png" alt="Youtube">
</a>
<a href="https://youtube.com/" target="_blank" rel="noopener noreferrer">
<img src="img/ico-youtube.png" alt="Youtube">
</a>

target="_blank" 를 사용하여 새 탭이나 새 창에서 링크를 열 때, 열린 새 페이지는 window.opener 객체를 통해 원래 페이지에 접근할 수 있습니다. 이는 잠재적인 보안 위험으로 아래처럼 rel="noopener"를 사용하여 window.opener 참조를 제거를 통해 원래 페이지에 접근할 수 없도록 설정해야 합니다.

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ | 판다마켓</title>
<!-- pretendard web-font: https://github.com/orioncactus/pretendard -->
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" media="print" onload="this.media='all'">

웹 폰트를 사용할 때, 성능에 대해서도 고민을 하면 좋습니다. 😸

  1. media="print"
    브라우저가 이 스타일시트를 즉시 로드하지 않습니다. 대신, 페이지의 주요 콘텐츠가 먼저 로드됩니다. 즉, 필요에 따라 지연로딩을 하게 설정할 수 있어요.
  2. onload="this.media='all'
    스타일시트가 완전히 로드된 후에 이 JavaScript 코드가 실행됩니다.

이렇게 하는 경우, 초기 페이지 로드 시간 단축할 수 있습니다. (즉, 폰트 스타일시트가 페이지 렌더링을 차단하지 않습니다.)

Comment on lines +24 to +35
</div>
<!-- /.container -->
</header>

<section class="section">
<div class="container">
<h2>FAQ</h2>
</div>
<!-- /.container -->
</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.

불필요한 주석은 제거되면 좋겠습니다. 🙃

@arthurkimdev arthurkimdev merged commit c0a1fbd into codeit-bootcamp-frontend:Basic-이학수 Sep 10, 2024
Comment on lines +40 to +42
<!-- /.container -->
</div>
<!-- / bottom-visual -->
Copy link
Collaborator

Choose a reason for hiding this comment

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

멘토님 혹시 이거 주석 어떻게 없애염?

baeggmin pushed a commit that referenced this pull request Oct 21, 2024
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.

3 participants