fix missing bracket
This commit is contained in:
parent
9ccdc6c3a8
commit
8bda01a5ec
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ To form an fase-in-opacity-animation, the frame-generator could look like this:
|
||||||
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
)
|
)
|
||||||
|
|
||||||
```easeInCubic``` is an easing-function stolen from the [jquery-easing plugin](http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js) ([easing-cheat-sheet](http://easings.net/). They take 4 parameters:
|
```easeInCubic``` is an easing-function stolen from the [jquery-easing plugin](http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js) ([easing-cheat-sheet](http://easings.net/)). They take 4 parameters:
|
||||||
- t: current time
|
- t: current time
|
||||||
- b: beginning value
|
- b: beginning value
|
||||||
- c: change In value
|
- c: change In value
|
||||||
|
|
Loading…
Add table
Reference in a new issue