-
Notifications
You must be signed in to change notification settings - Fork 147
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단계] 병민(윤병인) 미션 제출합니다. #61
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.
병민 안녕하세요! 리뷰로 만나게 되어 반갑습니다. 🤗
접근성 관련해서는 아직 제가 모르는 부분들이 많아서, 제가 이번에 새로 알게 된 것들, 그리고 스크린 리더기로 사용해봤을 때 느낀 점을 위주로 코멘트 남겨봤습니다.
모든 리뷰 반영해주실 필요는 없고, 필요하다고 생각하는 부분들만 반영해주세요!
코멘트 답변 남기고 다시 리뷰 요청 부탁 드립니다.
그럼 즐거운 주말 보내요~! 👍
src/main.js
Outdated
if (target.value < Number(min)) { | ||
isProperRange = false; | ||
target.value = min; | ||
snackbarManager.show('인원수는 0명에서 3명까지만 가능합니다'); | ||
} | ||
} | ||
if (max !== null) { | ||
if (target.value > Number(max)) { | ||
isProperRange = false; | ||
snackbarManager.show('인원수는 0명에서 3명까지만 가능합니다'); | ||
target.value = max; | ||
} |
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.
스낵바로 안내하는 것도 좋지만, 안내문이 읽히지는 않아서 버튼을 눌러도 어떤 상황인지 사용자가 알기 어려울 것 같네요. ㅠ.ㅠ
접근성 요소를 사용해서 해당 버튼을 사용할 수 없음을 나타내주면 더 좋을 것 같아요. 대한항공 웹사이트에서는 aria-disabled
를 사용하고 있어요!
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.
스낵바로 안내하는 것도 좋지만, 안내문이 읽히지는 않아서 버튼을 눌러도 어떤 상황인지 사용자가 알기 어려울 것 같네요. ㅠ.ㅠ
=> 안내문이 읽히도록 설정했습니다! snackbar의 content가 바뀌어야지만 aria-live가 작동했었네요!
접근성 요소를 사용해서 해당 버튼을 사용할 수 없음을 나타내주면 더 좋을 것 같아요. 대한항공 웹사이트에서는 aria-disabled를 사용하고 있어요!
=> 이런 속성이 있었군요. 알려주셔서 감사합니다.
제가 테스트 해봤는데 말씀하신대로 잘 작동 합니다 :D
다만, 눈을 감고 테스트 해봤을때 이 버튼을 누를 수 있도록 해놓고 -> 눌렀을때 에러메세지를 읽어주는 편이 더 안정감이 느껴졌습니다. aria-disabled를 사용하면, "버튼 사용 불가" 라는 말은 나오는데 왜 못사용하는지는 안나와서 조금 불편하다고 생각했습니다.
소피아는 어떻게 생각하시나요? (수정했으니 확인 가능합니다 :D)
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.
어떤 말씀이신지 알겠어요!
제 생각에는 스크린 리더기의 이용자들은 접근성 속성이 제공하는 표현들에 익숙할 것 같아요. 표준이고 많은 문서들이 이 표준을 기반으로 작성되었을테니까요. aria-disabled를 사용하면서, 원하는 정보를 더 제공할 수 있는 방법은 없는지 알아보고 적용하는 게 좋다고 생각합니다. 👍
<button type="button" class="helptip-trigger" aria-label="성인 기준 상세 안내 열기"><span>?</span></button> | ||
<div class="helptip"> | ||
<span aria-live="polite">국제선 만 12세 이상, 국내선 만 13세 이상</span> | ||
<button type="button" class="helptip-closer" aria-label="성인 기준 상세 안내 닫기"><span>x</span></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.
여기 닫기 버튼을 클릭하면 포커스가 전체 웹뷰로 이동하네요. 닫기 버튼을 클릭했을 때 다시 help button으로 포커스가 이동하면 사용자 흐름이 더 자연스러울 것 같아요.
저도 이번 수업 때 온스타한테 배운 건데, aria-expanded
라는 요소가 속성이 있대요. 펼쳐지고 닫히는 요소에 적합하다는데 한번 알아봐도 좋겠습니다. 🧐
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.
오 감사합니다.
다만, aria-expaned속성으로 focus가 이동되지는 않아 보입니다 !
포커스 이동하는 방법을 모르겠네요 ㅠ
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.
그러네요. ㅠㅠ 포커스 이동은 태그 구조를 잘 고민해봐야 할 것 같아요..! 저도 좋은 방법을 알게 되면 공유하겠습니다~!
src/style/style.scss
Outdated
.aria-hidden { | ||
position: absolute; | ||
text-indent: -9999px; | ||
} |
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.
aria-hidden
속성과 어떤 부분이 다른가요? 혼란을 주진 않을까요?
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.
동감입니다!
수정했습니다 :D
a91ad96
0c190f0
to
2a63588
Compare
2a63588
to
3d5be27
Compare
54a0b1e
to
e7ed7d3
Compare
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.
안녕하세요 병민~!
리뷰 잘 확인해주셨네요. 질문 남겨주신 코멘트에는 제 생각들 정리해서 답변 남겨뒀습니다.
다음 미션에서 웹 접근성을 준수하는 방법 더 알아가보도록 해요! 머지하겠습니다! 👍😄
src/main.js
Outdated
if (target.value < Number(min)) { | ||
isProperRange = false; | ||
target.value = min; | ||
snackbarManager.show('인원수는 0명에서 3명까지만 가능합니다'); | ||
} | ||
} | ||
if (max !== null) { | ||
if (target.value > Number(max)) { | ||
isProperRange = false; | ||
snackbarManager.show('인원수는 0명에서 3명까지만 가능합니다'); | ||
target.value = max; | ||
} |
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.
어떤 말씀이신지 알겠어요!
제 생각에는 스크린 리더기의 이용자들은 접근성 속성이 제공하는 표현들에 익숙할 것 같아요. 표준이고 많은 문서들이 이 표준을 기반으로 작성되었을테니까요. aria-disabled를 사용하면서, 원하는 정보를 더 제공할 수 있는 방법은 없는지 알아보고 적용하는 게 좋다고 생각합니다. 👍
<button type="button" class="helptip-trigger" aria-label="성인 기준 상세 안내 열기"><span>?</span></button> | ||
<div class="helptip"> | ||
<span aria-live="polite">국제선 만 12세 이상, 국내선 만 13세 이상</span> | ||
<button type="button" class="helptip-closer" aria-label="성인 기준 상세 안내 닫기"><span>x</span></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.
그러네요. ㅠㅠ 포커스 이동은 태그 구조를 잘 고민해봐야 할 것 같아요..! 저도 좋은 방법을 알게 되면 공유하겠습니다~!
🔥 결과
직접 구현한 페이지를 작동시켜볼 수 있도록 접근 가능한 페이지 링크를 공유해주세요.
병민에어
✅ 요구사항 목록
1 Spin Button
2 Carousel
🧐 공유