Skip to content

Commit 76b399e

Browse files
committed
添加原文分隔线
1 parent 378b935 commit 76b399e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/guide/transitions.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ order: 12
77
## 概述
88

99
Vue 在元素在DOM中插入、更新或者移除时,提供多种不同方式的应用过渡效果。
10-
包括一下工具
10+
包括以下工具
1111

1212
- 在 CSS 过渡和动画中自动应用 class
1313
- 可以配合使用第三方 CSS 动画库,如 Animate.css
@@ -108,8 +108,7 @@ new Vue({
108108

109109
对于这些类名,`v` 是过渡名的前缀。使用 `name="my-transition"` 可以重置前缀,比如 `v-enter` 替换为 `my-transition-enter`
110110

111-
`v-enter-active` and `v-leave-active` 可以控制 enter/leave 过渡的不同阶段,下一节,
112-
`v-enter-active` and `v-leave-active` give you the ability to specify different easing curves for enter/leave transitions, which you'll see an example of in the following section.
111+
`v-enter-active` and `v-leave-active` 可以控制 进入/离开 过渡的不同阶段,在下面章节会有个示例说明。
113112

114113
### CSS 过渡
115114

@@ -183,6 +182,14 @@ new Vue({
183182
</style>
184183
{% endraw %}
185184

185+
***
186+
187+
> 原文:http://rc.vuejs.org/guide/transitions.html
188+
189+
***
190+
191+
# Transitions: Entering, Leaving, and Lists
192+
186193
## Overview
187194

188195
Vue provides a variety of ways to apply transition effects when items are inserted, updated, or removed from the DOM. This includes tools to:

0 commit comments

Comments
 (0)