-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathkeyframes.js
517 lines (474 loc) · 18.6 KB
/
keyframes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
function leftAsNumber(target) {
var left = getComputedStyle(target).left;
return Number(left.substring(0, left.length - 2));
}
suite('keyframes', function() {
// Test normalize.
test('Normalize keyframes with all offsets specified but not sorted by offset. Some offsets are out of [0, 1] range.', function() {
var normalizedKeyframes;
assert.throws(function() {
normalizedKeyframes = normalizeKeyframes([
{offset: 0},
{offset: -1},
{offset: 1},
{offset: 0.5},
{offset: 2}
]);
});
});
test('Normalize keyframes with some offsets not specified, and not sorted by offset.', function() {
assert.throws(function() {
normalizeKeyframes([
{offset: 0.5},
{offset: 0},
{offset: 0.8},
{},
{offset: 1}
]);
});
});
test('Normalize keyframes with some offsets not specified, and not sorted by offset. Out of order keyframes are out of [0, 1] range.', function() {
assert.throws(function() {
normalizeKeyframes([
{offset: 0},
{offset: -1},
{offset: 0.5},
{},
{offset: 1}
]);
});
});
test('Normalize keyframes with some offsets not specified, but sorted by offset where specified. Some offsets are out of [0, 1] range.', function() {
var normalizedKeyframes;
assert.throws(function() {
normalizedKeyframes = normalizeKeyframes([
{offset: -1},
{offset: 0},
{offset: 0.5},
{},
{},
{offset: 2}
]);
});
});
test('Normalize keyframes with some offsets not specified, but sorted by offset where specified. All specified offsets in [0, 1] range.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([
{left: '0px', offset: 0},
{left: '10px'},
{left: '20px'},
{left: '30px', offset: 0.6},
{left: '40px'},
{left: '50px'}
]);
});
assert.equal(normalizedKeyframes.length, 6);
assert.closeTo(normalizedKeyframes[0].offset, 0, 0.001);
assert.equal(normalizedKeyframes[0].left, '0px');
assert.closeTo(normalizedKeyframes[1].offset, 0.2, 0.001);
assert.equal(normalizedKeyframes[1].left, '10px');
assert.closeTo(normalizedKeyframes[2].offset, 0.4, 0.001);
assert.equal(normalizedKeyframes[2].left, '20px');
assert.closeTo(normalizedKeyframes[3].offset, 0.6, 0.001);
assert.equal(normalizedKeyframes[3].left, '30px');
assert.closeTo(normalizedKeyframes[4].offset, 0.8, 0.001);
assert.equal(normalizedKeyframes[4].left, '40px');
assert.closeTo(normalizedKeyframes[5].offset, 1, 0.001);
assert.equal(normalizedKeyframes[5].left, '50px');
});
test('Normalize keyframes with no offsets specified.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([
{left: '0px'},
{left: '10px'},
{left: '20px'},
{left: '30px'},
{left: '40px'}
]);
});
assert.equal(normalizedKeyframes.length, 5);
assert.closeTo(normalizedKeyframes[0].offset, 0, 0.001);
assert.equal(normalizedKeyframes[0].left, '0px');
assert.closeTo(normalizedKeyframes[1].offset, 0.25, 0.001);
assert.equal(normalizedKeyframes[1].left, '10px');
assert.closeTo(normalizedKeyframes[2].offset, 0.5, 0.001);
assert.equal(normalizedKeyframes[2].left, '20px');
assert.closeTo(normalizedKeyframes[3].offset, 0.75, 0.001);
assert.equal(normalizedKeyframes[3].left, '30px');
assert.closeTo(normalizedKeyframes[4].offset, 1, 0.001);
assert.equal(normalizedKeyframes[4].left, '40px');
});
test('Normalize keyframes where a keyframe has an offset that is not a number.', function() {
assert.throws(function() {
normalizeKeyframes([
{offset: 0},
{offset: 'one'},
{offset: 1}
]);
});
});
test('Normalize keyframes where a keyframe has an offset that is a numeric string.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([
{offset: 0},
{offset: '0.5'},
{offset: 1}
]);
});
assert.equal(normalizedKeyframes.length, 3);
assert.closeTo(normalizedKeyframes[0].offset, 0, 0.001);
assert.closeTo(normalizedKeyframes[1].offset, 0.5, 0.001);
assert.closeTo(normalizedKeyframes[2].offset, 1, 0.001);
});
test('Normalize keyframes where some keyframes have easings.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([
{left: '0px', easing: 'ease-in'},
{left: '10px'},
{left: '0px'}
]);
});
});
test('Normalize keyframes with invalid specified easing.', function() {
var normalizedKeyframes;
assert.throws(function() {
normalizedKeyframes = normalizeKeyframes([
{left: '0px', easing: 'easy-peasy'},
{left: '10px'},
{left: '0px'}
]);
});
});
test('Normalize keyframes where some properties are given non-string, non-number values.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([
{left: {}},
{left: '100px'},
{left: []}
]);
});
assert(normalizedKeyframes.length, 3);
assert.equal(normalizedKeyframes[0].left, '[object Object]');
assert.equal(normalizedKeyframes[1].left, '100px');
assert.equal(normalizedKeyframes[2].left, '');
});
test('Normalize input that is not an array.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes({left: '10px'});
});
assert(normalizedKeyframes.length, 1);
assert.equal(normalizedKeyframes[0].left, '10px');
});
test('Normalize object-form input.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes({left: ['10px', '100px']});
});
assert(normalizedKeyframes.length, 2);
assert.equal(normalizedKeyframes[0].left, '10px');
assert.equal(normalizedKeyframes[1].left, '100px');
});
test('Normalize an empty array.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([]);
});
assert.deepEqual(normalizedKeyframes, []);
});
test('Normalize null.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes(null);
});
assert.deepEqual(normalizedKeyframes, []);
});
test('Normalize shorthands.', function() {
var normalizedKeyframes;
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([{borderColor: 'purple green orange blue'}, {borderColor: 'red'}]);
});
assert.equal(normalizedKeyframes[0].borderTopColor, 'purple');
assert.equal(normalizedKeyframes[0].borderRightColor, 'green');
assert.equal(normalizedKeyframes[0].borderBottomColor, 'orange');
assert.equal(normalizedKeyframes[0].borderLeftColor, 'blue');
assert.equal(normalizedKeyframes[1].borderTopColor, 'red');
assert.equal(normalizedKeyframes[1].borderRightColor, 'red');
assert.equal(normalizedKeyframes[1].borderBottomColor, 'red');
assert.equal(normalizedKeyframes[1].borderLeftColor, 'red');
assert.doesNotThrow(function() {
normalizedKeyframes = normalizeKeyframes([{font: 'italic bold 20pt / 200% serif'}, {font: 'italic normal bold 50pt serif'}]);
});
assert.equal(normalizedKeyframes[0].fontStyle, 'italic');
assert.equal(normalizedKeyframes[0].fontVariant, 'normal');
assert.equal(normalizedKeyframes[0].fontWeight, '700');
assert.equal(normalizedKeyframes[0].fontSize, '20pt');
assert.equal(normalizedKeyframes[0].lineHeight, '200%');
assert.equal(normalizedKeyframes[0].fontFamily, 'serif');
assert.equal(normalizedKeyframes[1].fontStyle, 'italic');
assert.equal(normalizedKeyframes[1].fontVariant, 'normal');
assert.equal(normalizedKeyframes[1].fontWeight, '700');
assert.equal(normalizedKeyframes[1].fontSize, '50pt');
assert.equal(normalizedKeyframes[1].lineHeight, 'normal');
assert.equal(normalizedKeyframes[1].fontFamily, 'serif');
});
// Test makePropertySpecificKeyframeGroups.
test('Make property specific keyframe groups for a simple keyframe list with one property.', function() {
var groups;
assert.doesNotThrow(function() {
groups = makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px'},
{left: '200px', offset: 0.3},
{left: '0px'}
]));
});
assert.equal(Object.getOwnPropertyNames(groups).length, 1);
assert.equal(groups.left.length, 3);
assert.closeTo(groups.left[0].offset, 0, 0.001);
assert.equal(groups.left[0].value, '0px');
assert.closeTo(groups.left[1].offset, 0.3, 0.001);
assert.equal(groups.left[1].value, '200px');
assert.closeTo(groups.left[2].offset, 1, 0.001);
assert.equal(groups.left[2].value, '0px');
});
test('Make property specific keyframe groups for an keyframe list with three properties.', function() {
var groups;
assert.doesNotThrow(function() {
groups = makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px', top: '200px', opacity: 1},
{left: '200px', top: '0px'},
{left: '0px', top: '200px', opacity: 0},
{top: '0px', opacity: 1},
{left: '200px', top: '200px', opacity: 0}
]));
});
assert.equal(Object.getOwnPropertyNames(groups).length, 3);
assert.equal(groups.left.length, 4);
assert.closeTo(groups.left[0].offset, 0, 0.001);
assert.equal(groups.left[0].value, '0px');
assert.closeTo(groups.left[1].offset, 0.25, 0.001);
assert.equal(groups.left[1].value, '200px');
assert.closeTo(groups.left[2].offset, 0.5, 0.001);
assert.equal(groups.left[2].value, '0px');
assert.closeTo(groups.left[3].offset, 1, 0.001);
assert.equal(groups.left[3].value, '200px');
assert.equal(groups.top.length, 5);
assert.closeTo(groups.top[0].offset, 0, 0.001);
assert.equal(groups.top[0].value, '200px');
assert.closeTo(groups.top[1].offset, 0.25, 0.001);
assert.equal(groups.top[1].value, '0px');
assert.closeTo(groups.top[2].offset, 0.5, 0.001);
assert.equal(groups.top[2].value, '200px');
assert.closeTo(groups.top[3].offset, 0.75, 0.001);
assert.equal(groups.top[3].value, '0px');
assert.closeTo(groups.top[4].offset, 1, 0.001);
assert.equal(groups.top[4].value, '200px');
assert.equal(groups.opacity.length, 4);
assert.closeTo(groups.opacity[0].offset, 0, 0.001);
assert.equal(groups.opacity[0].value, 1);
assert.closeTo(groups.opacity[1].offset, 0.5, 0.001);
assert.equal(groups.opacity[1].value, 0);
assert.closeTo(groups.opacity[2].offset, 0.75, 0.001);
assert.equal(groups.opacity[2].value, 1);
assert.closeTo(groups.opacity[3].offset, 1, 0.001);
assert.equal(groups.opacity[3].value, 0);
});
test('Make property specific keyframes when the offset of the last keyframe is specified but not equal to 1.', function() {
assert.throws(function() {
makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px', offset: 0},
{left: '20px'},
{left: '30px', offset: 0.9}
]));
});
});
test('Make property specific keyframes when no properties are animated, and the offset of the last keyframe is specified but not equal to 1.', function() {
var groups;
assert.doesNotThrow(function() {
groups = makePropertySpecificKeyframeGroups(normalizeKeyframes([
{offset: 0},
{},
{offset: 0.9}
]));
});
assert.equal(Object.getOwnPropertyNames(groups).length, 0);
});
test('Make property specific keyframes when a property appears in some keyframes, but not in the last keyframe.', function() {
assert.throws(function() {
makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px', top: '0px'},
{left: '10px', top: '10px'},
{top: '20px'}
]));
});
});
test('Make property specific keyframes when a property appears in some keyframes, but not in the first keyframe.', function() {
assert.throws(function() {
makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px'},
{left: '10px', top: '10px'},
{left: '20px', top: '20px'}
]));
});
});
test('Make property specific keyframes where two properties are animated. One property in a keyframe with offset 1. One property in the last keyframe, with no offset.', function() {
var groups;
assert.doesNotThrow(function() {
groups = makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px', top: '0px', offset: 0},
{left: '20px', offset: 1},
{top: '20px'}
]));
});
assert.equal(Object.getOwnPropertyNames(groups).length, 2);
});
test('Make property specific keyframes where two properties are animated. One property in a keyframe with offset 0. One property in the first keyframe, with no offset.', function() {
var groups;
assert.doesNotThrow(function() {
groups = makePropertySpecificKeyframeGroups(normalizeKeyframes([
{top: '0px'},
{left: '0px', offset: 0},
{left: '20px', top: '20px', offset: 1}
]));
});
assert.equal(Object.getOwnPropertyNames(groups).length, 2);
});
// Test per-keyframe easings.
test('Apply keyframe easings.', function() {
var target1 = document.createElement('div');
var target2 = document.createElement('div');
target1.style.position = 'absolute';
target2.style.position = 'absolute';
document.body.appendChild(target1);
document.body.appendChild(target2);
var animation1 = target1.animate(
[
{left: '0px'},
{left: '50px', offset: 0.25},
{left: '0px'}
],
{duration: 4000, fill: 'forwards'});
var animation2 = target2.animate(
[
{left: '0px', easing: 'ease-in'},
{left: '50px', offset: 0.25},
{left: '0px'}
],
{duration: 4000, fill: 'forwards'});
tick(0);
assert.equal(leftAsNumber(target1), 0);
assert.equal(leftAsNumber(target2), 0);
tick(250);
assert.closeTo(leftAsNumber(target1), 12.5, 1);
assert.closeTo(leftAsNumber(target2), 4.65, 1);
tick(500);
assert.closeTo(leftAsNumber(target1), 25, 1);
assert.closeTo(leftAsNumber(target2), 15.25, 1);
tick(1000);
assert.equal(leftAsNumber(target1), 50);
assert.equal(leftAsNumber(target2), 50);
tick(2500);
assert.equal(leftAsNumber(target1), 25);
assert.equal(leftAsNumber(target2), 25);
tick(4000);
assert.equal(leftAsNumber(target1), 0);
assert.equal(leftAsNumber(target2), 0);
});
// Test makeInterpolations.
test('Make interpolations for a simple keyframe list with one property.', function() {
var interpolations;
assert.doesNotThrow(function() {
interpolations = makeInterpolations(makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px'},
{left: '200px', offset: 0.3},
{left: '0px'}
])));
});
assert.equal(interpolations.length, 2);
assert.equal(interpolations[0].applyFrom, -Infinity);
assert.closeTo(interpolations[0].applyTo, 0.3, 0.001);
assert.closeTo(interpolations[0].startOffset, 0, 0.001);
assert.closeTo(interpolations[0].endOffset, 0.3, 0.001);
assert.equal(interpolations[0].property, 'left');
assert.equal(typeof interpolations[0].interpolation, 'function');
assert.closeTo(interpolations[1].applyFrom, 0.3, 0.001);
assert.equal(interpolations[1].applyTo, Infinity);
assert.closeTo(interpolations[1].startOffset, 0.3, 0.001);
assert.closeTo(interpolations[1].endOffset, 1, 0.001);
assert.equal(interpolations[1].property, 'left');
assert.equal(typeof interpolations[1].interpolation, 'function');
});
test('Make interpolations with invalid easing should throw.', function() {
assert.throws(function() {
makeInterpolations(makePropertySpecificKeyframeGroups(normalizeKeyframes([
{left: '0px', easing: 'pants and ducks'},
{left: '200px'},
])));
});
});
});
suite('keyframe-interpolations - convertEffectInput', function() {
setup(function() {
this.target = document.createElement('div');
this.target.style.position = 'absolute';
document.documentElement.appendChild(this.target);
});
teardown(function() {
this.target.parentNode.removeChild(this.target);
});
test('Convert effect input for a simple keyframe list with one property.', function() {
var keyframeInterpolations;
assert.doesNotThrow(function() {
keyframeInterpolations = webAnimations1.convertEffectInput([
{left: '0px'},
{left: '200px', offset: 0.3},
{left: '100px'}
]);
});
keyframeInterpolations(this.target, 0);
assert.closeTo(leftAsNumber(this.target), 0, 0.001);
keyframeInterpolations(this.target, 0.075);
assert.closeTo(leftAsNumber(this.target), 50, 0.001);
keyframeInterpolations(this.target, 0.15);
assert.closeTo(leftAsNumber(this.target), 100, 0.001);
keyframeInterpolations(this.target, 0.65);
assert.closeTo(leftAsNumber(this.target), 150, 0.001);
keyframeInterpolations(this.target, 1);
assert.closeTo(leftAsNumber(this.target), 100, 0.001);
keyframeInterpolations(this.target, 2);
assert.closeTo(leftAsNumber(this.target), -42.856, 0.01);
});
test('Convert effect input where one property is animated and the property has two keyframes at offset 1.', function() {
var keyframeInterpolations;
assert.doesNotThrow(function() {
keyframeInterpolations = webAnimations1.convertEffectInput([
{left: '0px', offset: 0},
{left: '20px', offset: 1},
{left: '30px'}
]);
});
keyframeInterpolations(this.target, 1);
assert.equal(getComputedStyle(this.target).left, '30px');
keyframeInterpolations(this.target, 2);
assert.equal(getComputedStyle(this.target).left, '30px');
});
test('Convert effect input and apply result at fraction null.', function() {
var keyframeInterpolations;
var underlying = getComputedStyle(this.target).left;
assert.doesNotThrow(function() {
keyframeInterpolations = webAnimations1.convertEffectInput([
{left: '0px'},
{left: '100px'}
]);
});
keyframeInterpolations(this.target, 1);
assert.equal(getComputedStyle(this.target).left, '100px');
keyframeInterpolations(this.target, null);
assert.equal(getComputedStyle(this.target).left, underlying);
});
});