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 33
44 For example, this is deprecated:
55
6- element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
6+ element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
77
88 and this should be used instead:
99
10- element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
10+ element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
1111
1212 * Added arbitrary easing capitalisation.
13+
1314 * Added "id" effect option. (http://w3c.github.io/web-animations/#dom-keyframeanimationoptions-id )
15+
1416 * Added "oncancel" event handler.
17+
1518 * Added value list keyframe syntax.
1619
1720 As as alternative to:
1821
19- element.animate([ {color: 'red'}, {color: 'green'}, {color: 'blue'}] );
22+ element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
2023
2124 you can now use:
2225
23- element.animate({color: [ 'red', 'green', 'blue'] });
26+ element.animate({color: ['red', 'green', 'blue']});
2427
2528 * Fixed easing TypeError in FireFox Nightly when using groups.
29+
2630 * Fixed delayed animation updates on Safari and Firefox
31+
2732 * Fixed infinite recursion when setting onfinish to null.
2833
2934### 2.1.4 - * December 1 2015*
You can’t perform that action at this time.
0 commit comments