Skip to content

Commit 6c0b7b4

Browse files
authored
Merge pull request #240 from niceplugin/examples/list-transition
예제 번역: /examples/list-transition
2 parents 45d6c78 + a99767a commit 6c0b7b4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

ko-KR/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ export const sidebar = {
477477
link: '/examples/#modal'
478478
},
479479
{
480-
text: 'List with Transitions',
480+
text: '트렌지션으로 리스트 구현',
481481
link: '/examples/#list-transition'
482482
},
483483
{

ko-KR/src/examples/src/list-transition/App/style.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@
1111
box-sizing: border-box;
1212
}
1313

14-
/* 1. declare transition */
14+
/* 1. 트렌지션 선언 */
1515
.fade-move,
1616
.fade-enter-active,
1717
.fade-leave-active {
1818
transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
1919
}
2020

21-
/* 2. declare enter from and leave to state */
21+
/* 2. 진입 및 진출 상태 선언 */
2222
.fade-enter-from,
2323
.fade-leave-to {
2424
opacity: 0;
2525
transform: scaleY(0.01) translate(30px, 0);
2626
}
2727

28-
/* 3. ensure leaving items are taken out of layout flow so that moving
29-
animations can be calculated correctly. */
28+
/* 3. 진출하는 리스트 아이템이 레이아웃에서 제외되어,
29+
움직이는 아이템들이 올바르게 계산되도록 합니다. */
3030
.fade-leave-active {
3131
position: absolute;
3232
}

ko-KR/src/examples/src/list-transition/App/template.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<button @click="insert">insert at random index</button>
2-
<button @click="reset">reset</button>
3-
<button @click="shuffle">shuffle</button>
1+
<button @click="insert">임의의 인덱스에 삽입</button>
2+
<button @click="reset">초기화</button>
3+
<button @click="shuffle">섞기</button>
44

55
<TransitionGroup tag="ul" name="fade" class="container">
66
<div v-for="item in items" class="item" :key="item">
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FLIP list transitions with the built-in <TransitionGroup>.
2-
https://aerotwist.com/blog/flip-your-animations/
1+
빌트인 컴포넌트인 <TransitionGroup>으로 FLIP 리스트 변환 효과를 구현한 예제입니다.
2+
FLIP 알아보기: https://aerotwist.com/blog/flip-your-animations/

0 commit comments

Comments
 (0)