From 4bed6399cdda2dfdfd71f78bbb480475579b5594 Mon Sep 17 00:00:00 2001 From: Menshykov Date: Sun, 4 Jun 2017 11:04:09 +0300 Subject: [PATCH] Less than zero --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 3ae7fb6..2672755 100644 --- a/readme.md +++ b/readme.md @@ -142,7 +142,7 @@ The Vivus constructor asks for 3 parameters: | Name | Description | |---------------|---------------------| -| `play(speed, callback)` | Plays the animation with the speed given in parameter. This value can be negative to go backward, between 0 and 1 to go slowly, or superior to 1 to go fast. [Default: `1`]. Callback executed after the animation is finished (optional) | +| `play(speed, callback)` | Plays the animation with the speed given in parameter. This value can be negative to go backward, between 0 and 1 to go slowly, >1 to go faster, or <0 to go in reverse from current state. [Default: `1`]. Callback executed after the animation is finished (optional) | | `stop()` | Stops the animation. | | `reset()` | Reinitialises the SVG to the original state: undrawn. | | `finish()` | Set the SVG to the final state: drawn. |