From a04d2f5c093a1f8b05fd9bab8331cdab72423fc3 Mon Sep 17 00:00:00 2001 From: CodinCat Date: Mon, 22 May 2017 17:39:11 +0800 Subject: [PATCH] Add links to Tween.js and Color.js --- src/v2/guide/transitioning-state.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/v2/guide/transitioning-state.md b/src/v2/guide/transitioning-state.md index eaeb9bb577..a55d4a0f02 100644 --- a/src/v2/guide/transitioning-state.md +++ b/src/v2/guide/transitioning-state.md @@ -15,7 +15,7 @@ All of these are either already stored as raw numbers or can be converted into n ## Animating State with Watchers -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: +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): ``` html @@ -95,7 +95,7 @@ new Vue({ {% endraw %} -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: +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): ``` html