-
Notifications
You must be signed in to change notification settings - Fork 1
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
[ 1주차 기본/심화 ] 웨비의 사진관 😋 #1
Conversation
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.
하띵!!!😚
|
||
/* a 태그 기본 스타일 제거*/ | ||
a { | ||
color: inherit; |
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.
어디에서 상속받는건가요??!!
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.
브라우저에서 상속 받는 a 태그 기본 스타일링 속성 (밑줄 / 파란 글씨)를 제거 해주었습니다! 보통 global.css에서 전역으로 많이 적용해주는 편인데, 여기서는 스타일 파일 하나만 사용해서 맨 위에서 전역으로 적용해줬어요 !
/*이미지 애니메이션*/ | ||
.jeju-section__img-container > img, | ||
.tokyo-section__img-container img { | ||
transition: transform 0.2s ease, padding 0.2s ease; |
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.
padding에는 어떤 효과가 들어가는건가요???!
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.
말 그대로 애니메이션 효과로 padding에도 변화가 들어갑니당! padding 속성이 변할 때 0.2초동안 ease로 변화하게 하는 속성입니다!
} | ||
|
||
.img-container__left, | ||
.img-container__right { |
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.
중복되는 스타일을 묶어서 지정해주니 가독성이 좋네요!!
/*세 번째 갤러리 섹션 - 부산*/ | ||
.busan-section__img-container { | ||
display: grid; | ||
grid-template-rows: repeat(4, 15rem); |
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.
간단하게 repeat써서 하는 방법이 있군요!! 전 15rem 4번써서 했는데,,,
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.
grid를 쓸 때 자주 쓰는 방법입니다! 추천추천
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.
수고했어용 ~~ 스크롤바 디자인 탐난당 ,,
background-color: #2f3542; | ||
border-radius: 0.5rem; | ||
background-clip: padding-box; | ||
border: 0.2rem solid transparent; |
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.
나 궁금한게!! transparent는 투명도 설정이라고 알고있는데, 영상의 스크롤바에 border 0.2rem으로 지정해둔게 안보이는 이유는 transparent를 지정해서 그런건가? 근데 그러면 border이 none인거랑 어떤게 다른건지 궁금해!!
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.
/* 스크롤바 뒷 배경 설정*/ | ||
.preview-section::-webkit-scrollbar-track { | ||
background-color: grey; | ||
box-shadow: inset 0rem 0rem 0.5rem white; |
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.
헐 섬세해 멋지다 ,,
color: #2f3542; | ||
|
||
text-decoration: underline; | ||
text-decoration-style: dotted; |
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.
이거 귀여워 ㅎㅎㅎ
} | ||
|
||
.img-container__right > img { | ||
flex-grow: 1; |
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.
이렇게하는거구나 ,, flex-grow 꽤나 어렵다 ,,
|
||
.busan-section__img-container img:nth-child(5) { | ||
grid-row: 3 / 5; | ||
grid-column: 4 / 5; |
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.
깔끔하다 !!!
week1/aissgn3/style.css
Outdated
} | ||
|
||
/*footer 영역*/ | ||
.footer { |
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.
나 가계부때도 궁금했는데 footer를 class명으로 한번 더 지정해준 이유가 궁금해!! 통일성을 위한건가?
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.
사실 class는 의미적인 내용을 가지는 것이 좋은 습관입니다! 더불어 해당 문서에서는 너무나도 명확히 하나의 footer라서 상관없겠지만, 추후 유지보수 측면에서도 태그 이름과 class를 똑같이 주는건 좋지 않은 습관이라고 하네용~ 그래서 이렇게 쓰게 되는 경우에는 그냥 footer를 쓰는 것도 좋겠죠!
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.
클래스명을 bem 방식으로 짓다보니까 이렇게 지정해줬는데! 서현이 말처럼 클래스는 의미적 내용을 가지는게 좋을것 같네요 !! 더 구체적으로 수정하겠습니댜
/*top 버튼*/ | ||
.btn-top { | ||
position: sticky; | ||
float: right; |
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.
float 이거 귀엽고 좋다 ,, 난 냅다 fixed로 고정시켜놨는뎅 ㅎ.ㅎ
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.
코드가 너무 깔끔하고 시맨틱합니당,,최고 ✨✨
week1/aissgn3/index.html
Outdated
<button class="btn-top"> | ||
<a href="#"><img src="./assets//icon/icon_top.png" /></a> | ||
</button> |
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.
단순히 이동하는 역할을 하기 때문에 button으로 감싸지 말고, a로만 스타일링 하는 것이 좋을 것 같아용 ㅎㅎ button과 a는 의도에 맞게 분리해서 사용하는 것이 좋답니다!
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.
오오 그렇군용 상단 이동 버튼이라고 생각해서 button으로 감싸줬는데! 이동의 역할이 주 역할이니까 a 태그만을 사용하는것도 좋을것 같네용
week1/aissgn3/reset.css
Outdated
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.
reset.css까지 넘넘 야무집니데이 ✨
<section id="jeju-section"> | ||
<header class="jeju-section__header"> |
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.
여기서 jeju-section에 관해서 section에는 id를 주고 header에는 class를 준 이유가 있나용?
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.
스타일링만을 위한 속성에는 class를, a 태그의 href에 사용될 부분은 고유해야 한다고 생각하여 id를 사용했습니당 !
.busan-section__img-container img:first-child { | ||
/*grid에서 각 행, 열에 차지하는 영역 결정 => 시작 번호 / 끝 번호*/ | ||
grid-row: 1 / 2; | ||
grid-column: 1 / 3; | ||
} |
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.
grid-template-areas
라는 편리한 속성도 있으니 참고 !
week1/aissgn3/style.css
Outdated
} | ||
|
||
/*footer 영역*/ | ||
.footer { |
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.
사실 class는 의미적인 내용을 가지는 것이 좋은 습관입니다! 더불어 해당 문서에서는 너무나도 명확히 하나의 footer라서 상관없겠지만, 추후 유지보수 측면에서도 태그 이름과 class를 똑같이 주는건 좋지 않은 습관이라고 하네용~ 그래서 이렇게 쓰게 되는 경우에는 그냥 footer를 쓰는 것도 좋겠죠!
✨ 구현 기능 명세
기본 과제
1. header
2. section (preview)
flex
를 사용하여 일정한 간격으로 배치합니다.스크롤
이 되도록 구현합니다.3. nav
underline
과색상 변경
이 일어납니다.4. section (img)
sticky
로 화면 상단에 닿으면 고정되도록 구현합니다.flex
를 이용해서 같은 크기의 사진들로 나열합니다.flex-wrap
)flex
를 사용하여 위와 같은 형태로 배치합니다.grid
를 사용하여 위와 같은 형태로 배치합니다.5. footer
6. 우측 하단에
top
버튼을 넣습니다.top
버튼을 누르면 최상단으로 이동합니다.심화 과제
1.
scroll
시 부드럽게 이동합니다.2. section (preview)
3. section (img)
1️⃣ 반응형으로 구현합니다.
2️⃣ 애니메이션
3️⃣
object-fit: cover
로 이미지 width, height값이 바뀔 때 비율을 그대로 두고 이미지가 영역에 맞게 잘리도록 합니다. (선택)💎 PR Point
1️⃣ Preview section
2️⃣ nav (목차)
<a>
를 사용했습니다!3️⃣ img section
position: sticky
는 꼭 left, top, bottom 등 속성과 같이 사용해야 적용됩니다!flex-wrap: wrap
,flex-grow : 1
속성을 사용해서 반응형으로 남는 이미지 넓이를 차지할 수 있도록 적용했습니다.flex-wrap: wrap
,flex-grow : 1
속성을 주어 마지막 줄에 개수가 맞지 않는 경우 이미지 너비를 늘려 width 값을 채우도록 구현하였습니다.grid-row
,grid-column
속성을 통해 구현했습니다. 이때, 넓이 값이 정해져 있어야 적용되는 것을 알 수 있습니다.4️⃣ top 버튼
🥺 소요 시간, 어려웠던 점
4h
🌈 구현 결과물
https://quasar-smelt-153.notion.site/week1-assign3-2c665410e34a49be9ad2421a79783a94?pvs=4