diff --git a/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/solution.md b/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/solution.md
index b04cb82314..85970ba243 100644
--- a/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/solution.md
+++ b/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/solution.md
@@ -1,11 +1,11 @@
-First we need to choose a method of positioning the ball.
+우선 공을 배치하는 방법을 선택해야 합니다.
-We can't use `position:fixed` for it, because scrolling the page would move the ball from the field.
+페이지를 스크롤 하면 공이 필드에서 이동하므로 `position:fixed`를 사용할 수 없습니다.
-So we should use `position:absolute` and, to make the positioning really solid, make `field` itself positioned.
+따라서 `position:absolute`를 사용해야 하고 위치 잡기를 정말 견고하게 하기 위해서는 `field` 자체를 위치 잡기 해야 합니다.
-Then the ball will be positioned relatively to the field:
+그러면 공은 필드에 상대적으로 배치됩니다.
```css
#field {
@@ -16,36 +16,36 @@ Then the ball will be positioned relatively to the field:
#ball {
position: absolute;
- left: 0; /* relative to the closest positioned ancestor (field) */
+ left: 0; /* 가장 가깝게 배치된 조상(field)에 상대적으로 위치하기 */
top: 0;
- transition: 1s all; /* CSS animation for left/top makes the ball fly */
+ transition: 1s all; /* CSS 애니메이션으로 왼쪽·위쪽으로 공이 날아가는 효과를 구현합니다 */
}
```
-Next we need to assign the correct `ball.style.left/top`. They contain field-relative coordinates now.
+그런 다음 올바른 `ball.style.left/top`을 할당해야 합니다. 이제 상대적인 필드 기준 좌표가 포함됩니다.
-Here's the picture:
+사진은 다음과 같습니다.

-We have `event.clientX/clientY` -- window-relative coordinates of the click.
+클릭한 위치의 창 기준 좌표를 표시하는 `event.clientX/clientY`가 있습니다.
-To get field-relative `left` coordinate of the click, we can substract the field left edge and the border width:
+클릭 시 필드에 상대적인 `left` 좌표를 구하려면 필드의 왼쪽 가장자리와 테두리의 너비를 빼면 됩니다.
```js
let left = event.clientX - fieldCoords.left - field.clientLeft;
```
-Normally, `ball.style.left` means the "left edge of the element" (the ball). So if we assign that `left`, then the ball edge, not center, would be under the mouse cursor.
+일반적으로 `ball.style.left`는 '요소(공)의 왼쪽 가장자리'를 의미합니다. 따라서 `left`를 할당하면 공의 중앙이 아닌 가장자리가 마우스 커서 아래로 오게 됩니다.
-We need to move the ball half-width left and half-height up to make it center.
+중앙으로 가게 만들려면 공을 왼쪽으로 반너비, 위쪽으로 반 높이 이동해야 합니다.
-So the final `left` would be:
+따라서 `left`는 최종적으로 다음과 같습니다.
```js
let left = event.clientX - fieldCoords.left - field.clientLeft - ball.offsetWidth/2;
```
-The vertical coordinate is calculated using the same logic.
+수직 좌표는 같은 논리를 사용하여 계산됩니다.
-Please note that the ball width/height must be known at the time we access `ball.offsetWidth`. Should be specified in HTML or CSS.
+공의 너비·높이는 `ball.offsetWidth`에 접근할 때 알아야 한다는 점을 주의해 주세요. HTML 또는 CSS로 지정해야 합니다.
diff --git a/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/task.md b/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/task.md
index d5269147a0..75c3d9b56c 100644
--- a/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/task.md
+++ b/2-ui/2-events/01-introduction-browser-events/04-move-ball-field/task.md
@@ -2,20 +2,21 @@ importance: 5
---
-# Move the ball across the field
+# 필드를 가로질러 공 이동하기
-Move the ball across the field to a click. Like this:
+클릭으로 필드를 가로질러 공을 이동해 주세요.
+예시:
[iframe src="solution" height="260" link]
-Requirements:
+요구사항은 다음과 같습니다.
-- The ball center should come exactly under the pointer on click (if possible without crossing the field edge).
-- CSS-animation is welcome.
-- The ball must not cross field boundaries.
-- When the page is scrolled, nothing should break.
+- 공의 중앙이 클릭 시 포인터 바로 아래에 와야 합니다(가능하면 필드 가장자리를 넘지 않아야 함).
+- CSS-animation을 사용하는 것도 환영합니다.
+- 공은 필드의 경계를 넘어서면 안 됩니다.
+- 페이지를 스크롤 할 때 깨짐 현상이 없어야 합니다.
-Notes:
+이 두 가지를 주의하세요.
-- The code should also work with different ball and field sizes, not be bound to any fixed values.
-- Use properties `event.clientX/event.clientY` for click coordinates.
+- 해당 코드는 특정 값에 고정되지 않고, 다른 공과 필드 크기에서도 작동해야 합니다.
+- 클릭 좌표에 `event.clientX/event.clientY` 프로퍼티를 사용하세요.
\ No newline at end of file
diff --git a/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/solution.md b/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/solution.md
index 7554a2f09d..28b0bea319 100644
--- a/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/solution.md
+++ b/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/solution.md
@@ -1,12 +1,12 @@
-# HTML/CSS
-First let's create HTML/CSS.
+# HTML·CSS
+먼저 HTML·CSS를 만들어 봅시다.
-A menu is a standalone graphical component on the page, so it's better to put it into a single DOM element.
+메뉴는 페이지의 독립적으로 실행하는 그래픽 구성요소이므로 단일 DOM 요소에 놓는 것이 좋습니다.
-A list of menu items can be laid out as a list `ul/li`.
+메뉴 항목 목록은 목록 `ul/li`로 배치할 수 있습니다.
-Here's the example structure:
+다음은 메뉴 구조 예시입니다.
```html
@@ -19,29 +19,29 @@ Here's the example structure:
```
-We use `` for the title, because `
` has an implicit `display:block` on it, and it will occupy 100% of the horizontal width.
+`
`는 암시적으로 `display:block`을 가지고 있으며 가로 너비의 100%를 차지하기 때문에 제목에는 ``을 사용합니다.
-Like this:
+이렇게 말이죠.
```html autorun height=50
Sweeties (click me)!
```
-So if we set `onclick` on it, then it will catch clicks to the right of the text.
+그래서 `onclick`을 설정하면 텍스트 오른쪽에 클릭이 나타납니다.
-As `` has an implicit `display: inline`, it occupies exactly enough place to fit all the text:
+``에는 암시적으로 `display: inline`이 있으므로 모든 텍스트에 정확히 맞도록 충분한 공간을 차지합니다.
```html autorun height=50
Sweeties (click me)!
```
-# Toggling the menu
+# 메뉴 토글 하기
-Toggling the menu should change the arrow and show/hide the menu list.
+메뉴를 토글 하면 화살표 방향이 바뀌고 메뉴 목록이 표시되거나 숨겨져야 합니다.
-All these changes are perfectly handled by CSS. In JavaScript we should label the current state of the menu by adding/removing the class `.open`.
+이 모든 변경 사항은 CSS로 처리할 수 있습니다. 자바스크립트에서 클래스 `.open`을 추가·제거하여 현재 메뉴 상태를 구분해야 합니다.
-Without it, the menu will be closed:
+`.open`이 없으면 메뉴는 닫힙니다.
```css
.menu ul {
@@ -58,7 +58,7 @@ Without it, the menu will be closed:
}
```
-...And with `.open` the arrow changes and the list shows up:
+`.open`을 사용하면 화살표가 바뀌고 목록이 표시됩니다.
```css
.menu.open .title::before {
diff --git a/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/task.md b/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/task.md
index 34c3137103..b3d592f9e3 100644
--- a/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/task.md
+++ b/2-ui/2-events/01-introduction-browser-events/05-sliding-menu/task.md
@@ -2,10 +2,10 @@ importance: 5
---
-# Create a sliding menu
+# 슬라이드 메뉴 구현하기
-Create a menu that opens/collapses on click:
+클릭 시 열리거나 접히는 메뉴를 구현해보세요.
[iframe border=1 height=100 src="solution"]
-P.S. HTML/CSS of the source document is to be modified.
+주의사항: 원본 문서의 HTML·CSS를 수정해야 합니다.
diff --git a/2-ui/2-events/01-introduction-browser-events/06-hide-message/solution.md b/2-ui/2-events/01-introduction-browser-events/06-hide-message/solution.md
index 022a0d9774..179383acc6 100644
--- a/2-ui/2-events/01-introduction-browser-events/06-hide-message/solution.md
+++ b/2-ui/2-events/01-introduction-browser-events/06-hide-message/solution.md
@@ -1,12 +1,12 @@
-To add the button we can use either `position:absolute` (and make the pane `position:relative`) or `float:right`. The `float:right` has the benefit that the button never overlaps the text, but `position:absolute` gives more freedom. So the choice is yours.
+닫기 버튼을 추가하려면 `position:absolute`(그리고 패널을 `position:relative`로 설정하기) 또는 `float:right` 중 하나를 사용할 수 있습니다. `float:right`는 버튼이 텍스트와 절대 겹치지 않는다는 장점이 있지만 `position:absolute`로는 더 자유롭게 배치할 수 있습니다. 어떤 방법을 사용할지 선택하세요.
-Then for each pane the code can be like:
+각 패널의 코드는 다음과 같습니다.
```js
pane.insertAdjacentHTML("afterbegin", '');
```
-Then the `