Skip to content

Commit cc22854

Browse files
CodinCatkazupon
authored andcommitted
Add links to Tween.js and Color.js (vuejs#920)
1 parent 57ebc78 commit cc22854

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/v2/guide/transitioning-state.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ All of these are either already stored as raw numbers or can be converted into n
1515

1616
## Animating State with Watchers
1717

18-
Watchers allow us to animate changes of any numerical property into another property. That may sound complicated in the abstract, so let's dive into an example using Tween.js:
18+
Watchers allow us to animate changes of any numerical property into another property. That may sound complicated in the abstract, so let's dive into an example using [Tween.js](https://github.com/tweenjs/tween.js):
1919

2020
``` html
2121
<script src="https://unpkg.com/[email protected]"></script>
@@ -95,7 +95,7 @@ new Vue({
9595
</script>
9696
{% endraw %}
9797

98-
When you update the number, the change is animated below the input. This makes for a nice demo, but what about something that isn't directly stored as a number, like any valid CSS color for example? Here's how we could accomplish this with the addition of Color.js:
98+
When you update the number, the change is animated below the input. This makes for a nice demo, but what about something that isn't directly stored as a number, like any valid CSS color for example? Here's how we could accomplish this with the addition of [Color.js](https://github.com/brehaut/color-js):
9999

100100
``` html
101101
<script src="https://unpkg.com/[email protected]"></script>

0 commit comments

Comments
 (0)