- Notifications
You must be signed in to change notification settings - Fork850
Part 2 - 2.1 브라우저 이벤트 소개 과제 4-7 문제 & 해설 번역 (#1546)#1587
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
boyeonihn wants to merge1 commit intojavascript-tutorial:masterChoose a base branch fromboyeonihn:issue1546
base:master
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Open
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
30 changes: 15 additions & 15 deletions2-ui/2-events/01-introduction-browser-events/04-move-ball-field/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
21 changes: 11 additions & 10 deletions2-ui/2-events/01-introduction-browser-events/04-move-ball-field/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions2-ui/2-events/01-introduction-browser-events/05-sliding-menu/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions2-ui/2-events/01-introduction-browser-events/05-sliding-menu/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions2-ui/2-events/01-introduction-browser-events/06-hide-message/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions2-ui/2-events/01-introduction-browser-events/06-hide-message/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions2-ui/2-events/01-introduction-browser-events/07-carousel/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
이미지 슬라이드는 이미지 `<img>`의`ul/li`목록으로 나타낼 수 있습니다. | ||
일반적으로 이런 이미지 슬라이드는 폭이 넓지만, 슬라이드 일부만 보이도록 고정 크기의 `<div>`로 감쌌습니다. | ||
 | ||
이미지 목록을 가로로 표시하려면`<li>`에`display: inline-block`과 같은 올바른 CSS 프로퍼티를 적용해야 합니다. | ||
`<img>`는`display`가 기본적으로`inline`이므로 조정해야 합니다. '문자의 끝(letter tails)'을 위한`inline`요소 아래에 여분의 공간이 확보되어 있으므로`display:block`을 사용해 삭제하겠습니다. | ||
스크롤 하려면`<ul>`을 이동하면 됩니다.`margin-left`를 바꾸거나`transform: translateX()`(더 나은 기능 구현을 위해)를 사용하는 등 여러 가지 방법이 있습니다. | ||
 | ||
외부`<div>`는 고정된 너비를 가지고 있으므로 '여분' 이미지는 잘립니다. | ||
캐러셀 전체는 페이지에 독립된 '그래픽 구성 요소(graphical component)'이므로 단일`<div class="carousel">`로 감싸서 그 안에서 스타일링 하는 것이 좋습니다. |
8 changes: 4 additions & 4 deletions2-ui/2-events/01-introduction-browser-events/07-carousel/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.