diff --git a/README.md b/README.md index 4086acc1..dab233fa 100644 --- a/README.md +++ b/README.md @@ -60,15 +60,15 @@ You can now **animate** any of your **component**, **HTML** or **SVG** elements ``` -To see more about how to use **directives**, check out [**Directive Usage**](https://motion.vueuse.org/directive-usage). +To see more about how to use **directives**, check out [**Directive Usage**](https://motion.vueuse.org/features/directive-usage). -To see more about what **properties** you can **animate**, check out [**Motion Properties**](https://motion.vueuse.org/motion-properties). +To see more about what **properties** you can **animate**, check out [**Motion Properties**](https://motion.vueuse.org/features/motion-properties). -To see more about how to **create** your own **animation** styles, check out [**Transition Properties**](https://motion.vueuse.org/transition-properties). +To see more about how to **create** your own **animation** styles, check out [**Transition Properties**](https://motion.vueuse.org/features/transition-properties). -To see more about what are **variants** and how you can **use** them, check out [**Variants**](https://motion.vueuse.org/variants). +To see more about what are **variants** and how you can **use** them, check out [**Variants**](https://motion.vueuse.org/features/variants). -To see more about how to **control** your declared **variants**, check out [**Motion Instance**](https://motion.vueuse.org/motion-instance). +To see more about how to **control** your declared **variants**, check out [**Motion Instance**](https://motion.vueuse.org/features/motion-instance). ## Credits diff --git a/docs/content/1.getting-started/1.introduction.md b/docs/content/1.getting-started/1.introduction.md index acdf4e3f..d2258deb 100644 --- a/docs/content/1.getting-started/1.introduction.md +++ b/docs/content/1.getting-started/1.introduction.md @@ -48,12 +48,12 @@ export default { ## Usage -- How to use **directives**? Check out [**Directive Usage**](/directive-usage). +- How to use **directives**? Check out [**Directive Usage**](/features/directive-usage). -- What **properties** you can **animate**? Check out [**Motion Properties**](/motion-properties). +- What **properties** you can **animate**? Check out [**Motion Properties**](/features/motion-properties). -- How to **create** your own **animations** styles? Check out [**Transition Properties**](/transition-properties). +- How to **create** your own **animations** styles? Check out [**Transition Properties**](/features/transition-properties). -- What are **variants** and how you can **use** them? Check out [**Variants**](/variants). +- What are **variants** and how you can **use** them? Check out [**Variants**](/features/variants). -- How to **control** your declared **variants**? Check out [**Motion Instance**](/motion-instance). +- How to **control** your declared **variants**? Check out [**Motion Instance**](/features/motion-instance). diff --git a/docs/content/2.features/0.presets.md b/docs/content/2.features/0.presets.md index 7d941a82..b807d2b0 100644 --- a/docs/content/2.features/0.presets.md +++ b/docs/content/2.features/0.presets.md @@ -6,7 +6,7 @@ toc: false It allows you to start implementing animations straight after installing the plugin in your Vue app. -You can add your own presets to your app using [**Custom Directives**](/directive-usage#custom-directives). +You can add your own presets to your app using [**Custom Directives**](/features/directive-usage#custom-directives). If you have any ideas for new presets add an issue on [**GitHub**](https://github.com/vueuse/motion#issues), or reach me on [**Twitter**](https://twitter.com/yaeeelglx). diff --git a/docs/content/2.features/1.directive-usage.md b/docs/content/2.features/1.directive-usage.md index 2325a229..3aba2ee3 100644 --- a/docs/content/2.features/1.directive-usage.md +++ b/docs/content/2.features/1.directive-usage.md @@ -28,13 +28,13 @@ You can also pass your variants as an object using the `:variants` prop. The `:variants` prop will be combined with all the other native variants properties, allowing you to define only your custom variants from this object. -The rest of the variants properties can be found on the [**Variants**](/variants) page. +The rest of the variants properties can be found on the [**Variants**](/features/variants) page. As a shorthand, you can use the `:delay` prop, that allows you to edit the delay from the element props. If you specified `visible`, `visible-once` or `enter` variant, the delay will be applied to each of them. -Otherwise, the delay will be applied on the `initial` [**variant**](/variants). +Otherwise, the delay will be applied on the `initial` [**variant**](/features/variants). ```vue