Skip to content
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

这章以代码占大部份的内容,所以校对上,比较单纯 #103

Merged
merged 2 commits into from
Oct 9, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/guide/transitioning-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ new Vue({
</script>
{% endraw %}

当你输入新数值时,就会触发动画。这个是一个不错的演示,但是对于不能直接像数字一样存储的值,比如 CSS 中的 color 的值,通过下面的例子我们来通过 Color.js 实现一个例子:
当你把数值更新时,就会触发动画。这个是一个不错的演示,但是对于不能直接像数字一样存储的值,比如 CSS 中的 color 的值,通过下面的例子我们来通过 Color.js 实现一个例子:


``` html
Expand Down Expand Up @@ -381,7 +381,7 @@ See [this fiddle](https://jsfiddle.net/chrisvfritz/65gLu2b6/) for the complete c

## 通过组件组织过渡

管理太多的状态转换的很快会接近到 Vue 实例或者组件的复杂性,不过,很多动画可以提取到专用的子组件
管理太多的状态转换的很快会接近到 Vue 实例或者组件的复杂性,幸好很多的动画可以提取到专用的子组件
我们来将之前的示例改写一下:

``` html
Expand Down