Skip to content

Commit 66087e1

Browse files
committed
docs: mention "next" tag in readme
1 parent 5decb17 commit 66087e1

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

readme.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ This library represents a modern approach to animation. It is very much inspired
1616

1717
npm install react-spring
1818

19+
Try the beta for [v9.0.0](https://github.com/react-spring/react-spring/pull/632):
20+
21+
npm install react-spring@next
22+
1923
### Documentation and Examples
24+
2025
More info about the project can be found [here](https://www.react-spring.io).
2126

2227
Examples and tutorials can be found [here](https://www.react-spring.io/docs/hooks/basics).
@@ -25,15 +30,15 @@ Examples and tutorials can be found [here](https://www.react-spring.io/docs/hook
2530

2631
## Why springs and not durations
2732

28-
The principle you will be working with is called a `spring`, it *does not have a defined curve or a set duration*. In that it differs greatly from the animation you are probably used to. We think of animation in terms of time and curves, but that in itself causes most of the struggle we face when trying to make elements on the screen move naturally, because nothing in the real world moves like that.
33+
The principle you will be working with is called a `spring`, it _does not have a defined curve or a set duration_. In that it differs greatly from the animation you are probably used to. We think of animation in terms of time and curves, but that in itself causes most of the struggle we face when trying to make elements on the screen move naturally, because nothing in the real world moves like that.
2934

3035
<p align="middle">
3136
<img height="250" src="https://i.imgur.com/7CCH51r.gif" />
3237
</p>
3338

34-
We are so used to time-based animation that we believe that struggle is normal, dealing with arbitrary curves, easings, time waterfalls, not to mention getting this all in sync. As Andy Matuschak (ex Apple UI-Kit developer) [expressed it once](https://twitter.com/andy_matuschak/status/566736015188963328): *Animation APIs parameterized by duration and curve are fundamentally opposed to continuous, fluid interactivity*.
39+
We are so used to time-based animation that we believe that struggle is normal, dealing with arbitrary curves, easings, time waterfalls, not to mention getting this all in sync. As Andy Matuschak (ex Apple UI-Kit developer) [expressed it once](https://twitter.com/andy_matuschak/status/566736015188963328): _Animation APIs parameterized by duration and curve are fundamentally opposed to continuous, fluid interactivity_.
3540

36-
Springs change that, animation becomes easy and approachable, everything you do looks and feels natural by default. For a detailed explanation watch [this video](https://www.youtube.com/embed/1tavDv5hXpo?controls=1&amp;start=370).
41+
Springs change that, animation becomes easy and approachable, everything you do looks and feels natural by default. For a detailed explanation watch [this video](https://www.youtube.com/embed/1tavDv5hXpo?controls=1&start=370).
3742

3843
### What others say
3944

0 commit comments

Comments
 (0)