File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
For example, this is deprecated:
5
5
6
- element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
6
+ element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
7
7
8
8
and this should be used instead:
9
9
10
- element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
10
+ element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
11
11
12
12
* Added arbitrary easing capitalisation.
13
+
13
14
* Added "id" effect option. (http://w3c.github.io/web-animations/#dom-keyframeanimationoptions-id )
15
+
14
16
* Added "oncancel" event handler.
17
+
15
18
* Added value list keyframe syntax.
16
19
17
20
As as alternative to:
18
21
19
- element.animate([ {color: 'red'}, {color: 'green'}, {color: 'blue'}] );
22
+ element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
20
23
21
24
you can now use:
22
25
23
- element.animate({color: [ 'red', 'green', 'blue'] });
26
+ element.animate({color: ['red', 'green', 'blue']});
24
27
25
28
* Fixed easing TypeError in FireFox Nightly when using groups.
29
+
26
30
* Fixed delayed animation updates on Safari and Firefox
31
+
27
32
* Fixed infinite recursion when setting onfinish to null.
28
33
29
34
### 2.1.4 - * December 1 2015*
You can’t perform that action at this time.
0 commit comments