You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ We are open to, and grateful for, any contributions made by the community.
4
4
5
5
## Reporting Issues
6
6
7
-
Before opening an issue, please search the [issue tracker](https://github.com/EDITD/react-text-loop/issues) to make sure your issue hasn't already been reported.
7
+
Before opening an issue, please search the [issue tracker](https://github.com/braposo/react-text-loop/issues) to make sure your issue hasn't already been reported.
8
8
9
9
## Development
10
10
11
-
Visit the [Issue tracker](https://github.com/EDITD/react-text-loop/issues) to find a list of open issues that need attention.
11
+
Visit the [Issue tracker](https://github.com/braposo/react-text-loop/issues) to find a list of open issues that need attention.
12
12
13
13
Fork, then clone the repo:
14
14
```
@@ -45,7 +45,7 @@ Please open an issue with a proposal for a new feature or refactoring before sta
45
45
46
46
## Submitting Changes
47
47
48
-
* Open a new issue in the [Issue tracker](https://github.com/EDITD/react-text-loop/issues).
48
+
* Open a new issue in the [Issue tracker](https://github.com/braposo/react-text-loop/issues).
49
49
* Fork the repo.
50
50
* Create a new feature branch based off the `master` branch.
51
51
* Make sure all tests pass and there are no linting errors.
An animated loop of text nodes for your headings. Uses [react-motion](https://github.com/chenglou/react-motion) for the transition so it handles super fast animations and spring params.
5
+
An animated loop of text nodes for your headings. Uses
6
+
[react-motion](https://github.com/chenglou/react-motion) for the transition so it handles super fast
| style | object or array || Any additional styles you might want to send to the wrapper. Uses glamor to process it so you can send either objects or arrays. |
44
-
| children | node || The words you want to loop (required) |
| interval | number \| array |`3000`| The frequency (in ms) that the words change. Can also pass an array if you want a different interval per children |
51
+
| delay | number |`0`| A delay (in ms) for the animation to start. This allows to use multiple instances to create a staggered animation effect for example. |
52
+
| adjustingSpeed | number |`150`| The speed that the container around each word adjusts to the next one (in ms). Usually you don't need to change this. |
53
+
| fade | boolean |`true`| Enable or disable the fade animation on enter and leave |
54
+
| mask | boolean |`false`| Mask the animation around the bounding box of the animated content |
55
+
| noWrap | boolean |`true`| Disable `whitepace: nowrap` style for each element. This is used by default so we can always get the right width of the element but can have issues sometimes. |
0 commit comments