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

Conversation

hbs0133
Copy link
Collaborator

@hbs0133 hbs0133 commented Apr 26, 2024

요구사항

기본

  • UI 디자인 기초 토픽을 수강해 보세요.

  • 피그마 디자인에 맞게 페이지를 만들어 주세요.

  • React와 같은 UI 라이브러리를 사용하지 않고 진행합니다.

  • HTML, CSS 파일을 Netlify로 배포해 주세요. (https://hwangpanda.netlify.app/)

  • PC사이즈만 고려해 주어진 디자인으로 구현합니다.

  • 랜딩 페이지의 url path는 루트(‘/’)로 설정합니다.

  • title은 “판다마켓”로 설정합니다.

  • 화면의 너비가 1920px 이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 커지도록 합니다.
    화면의 너비가 1920px 보다 작아질 때, “판다마켓” 로고의 왼쪽 여백 200px“로그인" 버튼의 오른쪽 여백 200px이 유지되고, 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 설정합니다.

  • 클릭으로 기능이 동작해야 하는 경우, 사용자가 클릭할 수 있는 요소임을 알 수 있도록 CSS 속성 cursor: pointer 로 설정합니다.

  • “판다마켓” 클릭 시 루트 페이지(‘/’)로 이동합니다.

  • '로그인'버튼 클릭 시 로그인 페이지(‘/login’)로 이동합니다 (빈 페이지)

  • “구경하러가기”버튼 클릭 시(’/items’)로 이동합니다.(빈 페이지)

  • “Privacy Policy”, “FAQ”는 클릭 시 각각 Privacy 페이지(‘/privacy’), FAQ 페이지(‘/faq’)로 이동합니다.(모두 빈 페이지)
    페이스북, 트위터, 유튜브, 인스타그램 아이콘을 클릭 시 각각의 홈페이지로 새로운 창이 열리면서 이동합니다.

심화

  • [ ]palette에 있는 color값들을 css 변수로 등록하고 사용해 주세요.

주요 변경사항

  • 판다마켓 랜딩페이지 구현

스크린샷

멘토에게

  • 원래 시멘틱 태그를 잘 사용하지 않고 div태그만 사용했는데 시멘틱 태그를 사용해보려 노력했으나 어려움과 어색함이 있었습니다.
  • 클래스 작명 너무 힘듭니다.
  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@hbs0133 hbs0133 requested a review from dev-kjy April 26, 2024 14:22
@hbs0133 hbs0133 added 순한맛🐑 마음이 많이 여립니다.. 미완성🫠 죄송합니다.. labels Apr 26, 2024
@@ -0,0 +1,111 @@
<!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.

다른 팀원 분들에게도 비슷한 피드백을 드렸는데요!
사이트의 내용이 한국어로 이루어져 있으므로 언어 설정을 ko로 하는 것을 추천드립니다.
접근성, SEO, 번역 동작 등에 영향을 미칠 수 있어서요.
더 자세한 내용은 아래 링크를 참고해주세요. 🤗
참고링크1
참고링크2

@@ -0,0 +1,173 @@
/* Reset CSS */
@import "reset.css";
Copy link
Collaborator

Choose a reason for hiding this comment

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

import 방식으로 css 파일을 로드할 시 waterfall 현상, 특정 브라우저에서의 버그 발생 등의 이슈가 있을 수 있으니 참고하시면 좋을 것 같습니다. 🤗
CSS 파일 로드 시 import와 link 방식의 차이

<body>
<div class="container">
<header class="header-wrapper">
<nav class="gnb">
Copy link
Collaborator

Choose a reason for hiding this comment

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

gnb 라는 클래스명의 네이밍이 좋네요. 👍👍

<div class="container">
<header class="header-wrapper">
<nav class="gnb">
<a href="/" class="gnb-logo"><img src="/Img/Property 1=Variant3.png" alt="로고이미지" /></a>
Copy link
Collaborator

Choose a reason for hiding this comment

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

폴더명에 축약어를 쓰는 것은 다소 어색해 보입니다. 대신에 images라는 풀명칭을 사용하고 여러장의 이미지가 있으므로 -s를 붙여 복수형으로 사용해주시면 좋을 것 같네요 😃

<div class="container">
<header class="header-wrapper">
<nav class="gnb">
<a href="/" class="gnb-logo"><img src="/Img/Property 1=Variant3.png" alt="로고이미지" /></a>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Property 1=Variant3.png 파일명에 _, -이 아닌 특수문자가 들어가는 것은 위험합니다. OS에서는 인정하는 파일명이라도 프론트엔드에서 사용하는 다른 서비스나 라이브러리에서 지원하지 않으면 오류가 발생할 수 있기 때문입니다. 특히 띄어쓰기는 정말 위험할 수 있는 것이, 띄어쓰기를 기준으로 문자열을 분할하는 경우가 있기 때문입니다.

Comment on lines +96 to +108
<footer class="footer-wrapper">
<div class="footer-copyright">@codeit - 2024</div>
<div class="footer-link">
<a href="/privacy.html">Privacy Policy</a>
<a href="/faq.html">FAQ</a>
</div>
<div class="footer-sns">
<a href="https://www.facebook.com/" target="_blank"><img src="/Img/ic_facebook.png" alt="페이스북 아이콘" /></a>
<a href="https://twitter.com/" target="_blank"><img src="/Img/ic_twitter.png" alt="트위터 아이콘" /></a>
<a href="https://www.youtube.com/" target="_blank"><img src="/Img/ic_youtube.png" alt="유튜브 아이콘" /></a>
<a href="https://www.instagram.com/" target="_blank"><img src="/Img/ic_instagram.png" alt="인스타그램 아이콘" /></a>
</div>
</footer>
Copy link
Collaborator

Choose a reason for hiding this comment

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

footer에 들어가는 요소들에 대해 태그와 클래스명을 적절하게 작성해주셨네요 👍👍
HTML파일만 보아도 페이지에 대해 한눈에 파악할 수 있어 좋았습니다.

</div>
</section>
</div>
<div class="content-Banner-wrapper">
Copy link
Collaborator

Choose a reason for hiding this comment

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

클래스명 작성 시 Banner 부분만 대문자로 시작하는 것이 조금 어색합니다.
다른 대부분의 클래스명이 케밥케이스를 사용하고 있으므로 통일성 있게 소문자로 작성되면 좋을 것 같습니다. 🤗

</p>
</div>
</section>
<section class="content content-rowReverse">
Copy link
Collaborator

Choose a reason for hiding this comment

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

CSS 속성이 단 하나로만 이루어져 있는 경우 속성명이나 값을 사용해 클래스명을 작성해 준 것은 아주 좋습니다. 👍👍
보는 사람이 클래스명만 보아도 내용을 쉽게 파악할 수 있기 때문입니다.
다만, 이 클래스의 경우 필요할 때 content가 아닌 곳에서도 사용할 수 있으므로
속성명-값의 구조로 flex-rowReverse 이름으로 해주시면 더욱 유연한 코드가 될 것 같습니다.

</p>
</div>
</section>
<section class="content content-rowReverse">
Copy link
Collaborator

Choose a reason for hiding this comment

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

다른 대부분의 클래스명이 케밥케이스를 사용하고 있으므로 동일하게 content-row-reverse로 해주시는 것이 좋을 것 같습니다.
(아마 - 가 하나 더 추가되어 구조가 깨지는 것을 걱정해 이렇게 작성한 것으로 보이는데 표기법이 이곳만 달라 어색한 것이 더 두드러지는 것 같아 케밥케이스를 추천드려요 😃)

</div>
<div class="contents">
<section class="content">
<img class="content-img" src="/Img/Img_home_01.png" alt="콘텐츠이미지1" />
Copy link
Collaborator

Choose a reason for hiding this comment

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

alt 속성을 활용해 대체 텍스를 작성해 주신 부분은 좋습니다. 👍
다만, 그 내용이 개발적인 측면에서만 작성된 것이 아쉽습니다. 대체 텍스트의 경우 스크린리더 같은 보조도구를 활용해야 하는 사람들이나 웹 크롤러가 그 이미지의 의미를 파악하기위해 접근하기도 합니다. 이미지1 처럼 단순히 일반적인 네이밍과 넘버링을 쓰게 되면 사람이나 크롤러가 이해할 수 없으니 좀 더 구체적으로 작성하면 좋을 것 같네요 🤗

@dev-kjy dev-kjy merged commit 9529b5c into codeit-bootcamp-frontend:Basic-황병선 Apr 29, 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.

2 participants