animejs 3.2.2 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/anime.js DELETED
@@ -1,1313 +0,0 @@
1
- /*
2
- * anime.js v3.2.2
3
- * (c) 2023 Julian Garnier
4
- * Released under the MIT license
5
- * animejs.com
6
- */
7
-
8
- 'use strict';
9
-
10
- // Defaults
11
-
12
- var defaultInstanceSettings = {
13
- update: null,
14
- begin: null,
15
- loopBegin: null,
16
- changeBegin: null,
17
- change: null,
18
- changeComplete: null,
19
- loopComplete: null,
20
- complete: null,
21
- loop: 1,
22
- direction: 'normal',
23
- autoplay: true,
24
- timelineOffset: 0
25
- };
26
-
27
- var defaultTweenSettings = {
28
- duration: 1000,
29
- delay: 0,
30
- endDelay: 0,
31
- easing: 'easeOutElastic(1, .5)',
32
- round: 0
33
- };
34
-
35
- var validTransforms = ['translateX', 'translateY', 'translateZ', 'rotate', 'rotateX', 'rotateY', 'rotateZ', 'scale', 'scaleX', 'scaleY', 'scaleZ', 'skew', 'skewX', 'skewY', 'perspective', 'matrix', 'matrix3d'];
36
-
37
- // Caching
38
-
39
- var cache = {
40
- CSS: {},
41
- springs: {}
42
- };
43
-
44
- // Utils
45
-
46
- function minMax(val, min, max) {
47
- return Math.min(Math.max(val, min), max);
48
- }
49
-
50
- function stringContains(str, text) {
51
- return str.indexOf(text) > -1;
52
- }
53
-
54
- function applyArguments(func, args) {
55
- return func.apply(null, args);
56
- }
57
-
58
- var is = {
59
- arr: function (a) { return Array.isArray(a); },
60
- obj: function (a) { return stringContains(Object.prototype.toString.call(a), 'Object'); },
61
- pth: function (a) { return is.obj(a) && a.hasOwnProperty('totalLength'); },
62
- svg: function (a) { return a instanceof SVGElement; },
63
- inp: function (a) { return a instanceof HTMLInputElement; },
64
- dom: function (a) { return a.nodeType || is.svg(a); },
65
- str: function (a) { return typeof a === 'string'; },
66
- fnc: function (a) { return typeof a === 'function'; },
67
- und: function (a) { return typeof a === 'undefined'; },
68
- nil: function (a) { return is.und(a) || a === null; },
69
- hex: function (a) { return /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(a); },
70
- rgb: function (a) { return /^rgb/.test(a); },
71
- hsl: function (a) { return /^hsl/.test(a); },
72
- col: function (a) { return (is.hex(a) || is.rgb(a) || is.hsl(a)); },
73
- key: function (a) { return !defaultInstanceSettings.hasOwnProperty(a) && !defaultTweenSettings.hasOwnProperty(a) && a !== 'targets' && a !== 'keyframes'; },
74
- };
75
-
76
- // Easings
77
-
78
- function parseEasingParameters(string) {
79
- var match = /\(([^)]+)\)/.exec(string);
80
- return match ? match[1].split(',').map(function (p) { return parseFloat(p); }) : [];
81
- }
82
-
83
- // Spring solver inspired by Webkit Copyright © 2016 Apple Inc. All rights reserved. https://webkit.org/demos/spring/spring.js
84
-
85
- function spring(string, duration) {
86
-
87
- var params = parseEasingParameters(string);
88
- var mass = minMax(is.und(params[0]) ? 1 : params[0], .1, 100);
89
- var stiffness = minMax(is.und(params[1]) ? 100 : params[1], .1, 100);
90
- var damping = minMax(is.und(params[2]) ? 10 : params[2], .1, 100);
91
- var velocity = minMax(is.und(params[3]) ? 0 : params[3], .1, 100);
92
- var w0 = Math.sqrt(stiffness / mass);
93
- var zeta = damping / (2 * Math.sqrt(stiffness * mass));
94
- var wd = zeta < 1 ? w0 * Math.sqrt(1 - zeta * zeta) : 0;
95
- var a = 1;
96
- var b = zeta < 1 ? (zeta * w0 + -velocity) / wd : -velocity + w0;
97
-
98
- function solver(t) {
99
- var progress = duration ? (duration * t) / 1000 : t;
100
- if (zeta < 1) {
101
- progress = Math.exp(-progress * zeta * w0) * (a * Math.cos(wd * progress) + b * Math.sin(wd * progress));
102
- } else {
103
- progress = (a + b * progress) * Math.exp(-progress * w0);
104
- }
105
- if (t === 0 || t === 1) { return t; }
106
- return 1 - progress;
107
- }
108
-
109
- function getDuration() {
110
- var cached = cache.springs[string];
111
- if (cached) { return cached; }
112
- var frame = 1/6;
113
- var elapsed = 0;
114
- var rest = 0;
115
- while(true) {
116
- elapsed += frame;
117
- if (solver(elapsed) === 1) {
118
- rest++;
119
- if (rest >= 16) { break; }
120
- } else {
121
- rest = 0;
122
- }
123
- }
124
- var duration = elapsed * frame * 1000;
125
- cache.springs[string] = duration;
126
- return duration;
127
- }
128
-
129
- return duration ? solver : getDuration;
130
-
131
- }
132
-
133
- // Basic steps easing implementation https://developer.mozilla.org/fr/docs/Web/CSS/transition-timing-function
134
-
135
- function steps(steps) {
136
- if ( steps === void 0 ) steps = 10;
137
-
138
- return function (t) { return Math.ceil((minMax(t, 0.000001, 1)) * steps) * (1 / steps); };
139
- }
140
-
141
- // BezierEasing https://github.com/gre/bezier-easing
142
-
143
- var bezier = (function () {
144
-
145
- var kSplineTableSize = 11;
146
- var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);
147
-
148
- function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1 }
149
- function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1 }
150
- function C(aA1) { return 3.0 * aA1 }
151
-
152
- function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT }
153
- function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1) }
154
-
155
- function binarySubdivide(aX, aA, aB, mX1, mX2) {
156
- var currentX, currentT, i = 0;
157
- do {
158
- currentT = aA + (aB - aA) / 2.0;
159
- currentX = calcBezier(currentT, mX1, mX2) - aX;
160
- if (currentX > 0.0) { aB = currentT; } else { aA = currentT; }
161
- } while (Math.abs(currentX) > 0.0000001 && ++i < 10);
162
- return currentT;
163
- }
164
-
165
- function newtonRaphsonIterate(aX, aGuessT, mX1, mX2) {
166
- for (var i = 0; i < 4; ++i) {
167
- var currentSlope = getSlope(aGuessT, mX1, mX2);
168
- if (currentSlope === 0.0) { return aGuessT; }
169
- var currentX = calcBezier(aGuessT, mX1, mX2) - aX;
170
- aGuessT -= currentX / currentSlope;
171
- }
172
- return aGuessT;
173
- }
174
-
175
- function bezier(mX1, mY1, mX2, mY2) {
176
-
177
- if (!(0 <= mX1 && mX1 <= 1 && 0 <= mX2 && mX2 <= 1)) { return; }
178
- var sampleValues = new Float32Array(kSplineTableSize);
179
-
180
- if (mX1 !== mY1 || mX2 !== mY2) {
181
- for (var i = 0; i < kSplineTableSize; ++i) {
182
- sampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);
183
- }
184
- }
185
-
186
- function getTForX(aX) {
187
-
188
- var intervalStart = 0;
189
- var currentSample = 1;
190
- var lastSample = kSplineTableSize - 1;
191
-
192
- for (; currentSample !== lastSample && sampleValues[currentSample] <= aX; ++currentSample) {
193
- intervalStart += kSampleStepSize;
194
- }
195
-
196
- --currentSample;
197
-
198
- var dist = (aX - sampleValues[currentSample]) / (sampleValues[currentSample + 1] - sampleValues[currentSample]);
199
- var guessForT = intervalStart + dist * kSampleStepSize;
200
- var initialSlope = getSlope(guessForT, mX1, mX2);
201
-
202
- if (initialSlope >= 0.001) {
203
- return newtonRaphsonIterate(aX, guessForT, mX1, mX2);
204
- } else if (initialSlope === 0.0) {
205
- return guessForT;
206
- } else {
207
- return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);
208
- }
209
-
210
- }
211
-
212
- return function (x) {
213
- if (mX1 === mY1 && mX2 === mY2) { return x; }
214
- if (x === 0 || x === 1) { return x; }
215
- return calcBezier(getTForX(x), mY1, mY2);
216
- }
217
-
218
- }
219
-
220
- return bezier;
221
-
222
- })();
223
-
224
- var penner = (function () {
225
-
226
- // Based on jQuery UI's implemenation of easing equations from Robert Penner (http://www.robertpenner.com/easing)
227
-
228
- var eases = { linear: function () { return function (t) { return t; }; } };
229
-
230
- var functionEasings = {
231
- Sine: function () { return function (t) { return 1 - Math.cos(t * Math.PI / 2); }; },
232
- Expo: function () { return function (t) { return t ? Math.pow(2, 10 * t - 10) : 0; }; },
233
- Circ: function () { return function (t) { return 1 - Math.sqrt(1 - t * t); }; },
234
- Back: function () { return function (t) { return t * t * (3 * t - 2); }; },
235
- Bounce: function () { return function (t) {
236
- var pow2, b = 4;
237
- while (t < (( pow2 = Math.pow(2, --b)) - 1) / 11) {}
238
- return 1 / Math.pow(4, 3 - b) - 7.5625 * Math.pow(( pow2 * 3 - 2 ) / 22 - t, 2)
239
- }; },
240
- Elastic: function (amplitude, period) {
241
- if ( amplitude === void 0 ) amplitude = 1;
242
- if ( period === void 0 ) period = .5;
243
-
244
- var a = minMax(amplitude, 1, 10);
245
- var p = minMax(period, .1, 2);
246
- return function (t) {
247
- return (t === 0 || t === 1) ? t :
248
- -a * Math.pow(2, 10 * (t - 1)) * Math.sin((((t - 1) - (p / (Math.PI * 2) * Math.asin(1 / a))) * (Math.PI * 2)) / p);
249
- }
250
- }
251
- };
252
-
253
- var baseEasings = ['Quad', 'Cubic', 'Quart', 'Quint'];
254
-
255
- baseEasings.forEach(function (name, i) {
256
- functionEasings[name] = function () { return function (t) { return Math.pow(t, i + 2); }; };
257
- });
258
-
259
- Object.keys(functionEasings).forEach(function (name) {
260
- var easeIn = functionEasings[name];
261
- eases['easeIn' + name] = easeIn;
262
- eases['easeOut' + name] = function (a, b) { return function (t) { return 1 - easeIn(a, b)(1 - t); }; };
263
- eases['easeInOut' + name] = function (a, b) { return function (t) { return t < 0.5 ? easeIn(a, b)(t * 2) / 2 :
264
- 1 - easeIn(a, b)(t * -2 + 2) / 2; }; };
265
- eases['easeOutIn' + name] = function (a, b) { return function (t) { return t < 0.5 ? (1 - easeIn(a, b)(1 - t * 2)) / 2 :
266
- (easeIn(a, b)(t * 2 - 1) + 1) / 2; }; };
267
- });
268
-
269
- return eases;
270
-
271
- })();
272
-
273
- function parseEasings(easing, duration) {
274
- if (is.fnc(easing)) { return easing; }
275
- var name = easing.split('(')[0];
276
- var ease = penner[name];
277
- var args = parseEasingParameters(easing);
278
- switch (name) {
279
- case 'spring' : return spring(easing, duration);
280
- case 'cubicBezier' : return applyArguments(bezier, args);
281
- case 'steps' : return applyArguments(steps, args);
282
- default : return applyArguments(ease, args);
283
- }
284
- }
285
-
286
- // Strings
287
-
288
- function selectString(str) {
289
- try {
290
- var nodes = document.querySelectorAll(str);
291
- return nodes;
292
- } catch(e) {
293
- return;
294
- }
295
- }
296
-
297
- // Arrays
298
-
299
- function filterArray(arr, callback) {
300
- var len = arr.length;
301
- var thisArg = arguments.length >= 2 ? arguments[1] : void 0;
302
- var result = [];
303
- for (var i = 0; i < len; i++) {
304
- if (i in arr) {
305
- var val = arr[i];
306
- if (callback.call(thisArg, val, i, arr)) {
307
- result.push(val);
308
- }
309
- }
310
- }
311
- return result;
312
- }
313
-
314
- function flattenArray(arr) {
315
- return arr.reduce(function (a, b) { return a.concat(is.arr(b) ? flattenArray(b) : b); }, []);
316
- }
317
-
318
- function toArray(o) {
319
- if (is.arr(o)) { return o; }
320
- if (is.str(o)) { o = selectString(o) || o; }
321
- if (o instanceof NodeList || o instanceof HTMLCollection) { return [].slice.call(o); }
322
- return [o];
323
- }
324
-
325
- function arrayContains(arr, val) {
326
- return arr.some(function (a) { return a === val; });
327
- }
328
-
329
- // Objects
330
-
331
- function cloneObject(o) {
332
- var clone = {};
333
- for (var p in o) { clone[p] = o[p]; }
334
- return clone;
335
- }
336
-
337
- function replaceObjectProps(o1, o2) {
338
- var o = cloneObject(o1);
339
- for (var p in o1) { o[p] = o2.hasOwnProperty(p) ? o2[p] : o1[p]; }
340
- return o;
341
- }
342
-
343
- function mergeObjects(o1, o2) {
344
- var o = cloneObject(o1);
345
- for (var p in o2) { o[p] = is.und(o1[p]) ? o2[p] : o1[p]; }
346
- return o;
347
- }
348
-
349
- // Colors
350
-
351
- function rgbToRgba(rgbValue) {
352
- var rgb = /rgb\((\d+,\s*[\d]+,\s*[\d]+)\)/g.exec(rgbValue);
353
- return rgb ? ("rgba(" + (rgb[1]) + ",1)") : rgbValue;
354
- }
355
-
356
- function hexToRgba(hexValue) {
357
- var rgx = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
358
- var hex = hexValue.replace(rgx, function (m, r, g, b) { return r + r + g + g + b + b; } );
359
- var rgb = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
360
- var r = parseInt(rgb[1], 16);
361
- var g = parseInt(rgb[2], 16);
362
- var b = parseInt(rgb[3], 16);
363
- return ("rgba(" + r + "," + g + "," + b + ",1)");
364
- }
365
-
366
- function hslToRgba(hslValue) {
367
- var hsl = /hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(hslValue) || /hsla\((\d+),\s*([\d.]+)%,\s*([\d.]+)%,\s*([\d.]+)\)/g.exec(hslValue);
368
- var h = parseInt(hsl[1], 10) / 360;
369
- var s = parseInt(hsl[2], 10) / 100;
370
- var l = parseInt(hsl[3], 10) / 100;
371
- var a = hsl[4] || 1;
372
- function hue2rgb(p, q, t) {
373
- if (t < 0) { t += 1; }
374
- if (t > 1) { t -= 1; }
375
- if (t < 1/6) { return p + (q - p) * 6 * t; }
376
- if (t < 1/2) { return q; }
377
- if (t < 2/3) { return p + (q - p) * (2/3 - t) * 6; }
378
- return p;
379
- }
380
- var r, g, b;
381
- if (s == 0) {
382
- r = g = b = l;
383
- } else {
384
- var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
385
- var p = 2 * l - q;
386
- r = hue2rgb(p, q, h + 1/3);
387
- g = hue2rgb(p, q, h);
388
- b = hue2rgb(p, q, h - 1/3);
389
- }
390
- return ("rgba(" + (r * 255) + "," + (g * 255) + "," + (b * 255) + "," + a + ")");
391
- }
392
-
393
- function colorToRgb(val) {
394
- if (is.rgb(val)) { return rgbToRgba(val); }
395
- if (is.hex(val)) { return hexToRgba(val); }
396
- if (is.hsl(val)) { return hslToRgba(val); }
397
- }
398
-
399
- // Units
400
-
401
- function getUnit(val) {
402
- var split = /[+-]?\d*\.?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?(%|px|pt|em|rem|in|cm|mm|ex|ch|pc|vw|vh|vmin|vmax|deg|rad|turn)?$/.exec(val);
403
- if (split) { return split[1]; }
404
- }
405
-
406
- function getTransformUnit(propName) {
407
- if (stringContains(propName, 'translate') || propName === 'perspective') { return 'px'; }
408
- if (stringContains(propName, 'rotate') || stringContains(propName, 'skew')) { return 'deg'; }
409
- }
410
-
411
- // Values
412
-
413
- function getFunctionValue(val, animatable) {
414
- if (!is.fnc(val)) { return val; }
415
- return val(animatable.target, animatable.id, animatable.total);
416
- }
417
-
418
- function getAttribute(el, prop) {
419
- return el.getAttribute(prop);
420
- }
421
-
422
- function convertPxToUnit(el, value, unit) {
423
- var valueUnit = getUnit(value);
424
- if (arrayContains([unit, 'deg', 'rad', 'turn'], valueUnit)) { return value; }
425
- var cached = cache.CSS[value + unit];
426
- if (!is.und(cached)) { return cached; }
427
- var baseline = 100;
428
- var tempEl = document.createElement(el.tagName);
429
- var parentEl = (el.parentNode && (el.parentNode !== document)) ? el.parentNode : document.body;
430
- parentEl.appendChild(tempEl);
431
- tempEl.style.position = 'absolute';
432
- tempEl.style.width = baseline + unit;
433
- var factor = baseline / tempEl.offsetWidth;
434
- parentEl.removeChild(tempEl);
435
- var convertedUnit = factor * parseFloat(value);
436
- cache.CSS[value + unit] = convertedUnit;
437
- return convertedUnit;
438
- }
439
-
440
- function getCSSValue(el, prop, unit) {
441
- if (prop in el.style) {
442
- var uppercasePropName = prop.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
443
- var value = el.style[prop] || getComputedStyle(el).getPropertyValue(uppercasePropName) || '0';
444
- return unit ? convertPxToUnit(el, value, unit) : value;
445
- }
446
- }
447
-
448
- function getAnimationType(el, prop) {
449
- if (is.dom(el) && !is.inp(el) && (!is.nil(getAttribute(el, prop)) || (is.svg(el) && el[prop]))) { return 'attribute'; }
450
- if (is.dom(el) && arrayContains(validTransforms, prop)) { return 'transform'; }
451
- if (is.dom(el) && (prop !== 'transform' && getCSSValue(el, prop))) { return 'css'; }
452
- if (el[prop] != null) { return 'object'; }
453
- }
454
-
455
- function getElementTransforms(el) {
456
- if (!is.dom(el)) { return; }
457
- var str = el.style.transform || '';
458
- var reg = /(\w+)\(([^)]*)\)/g;
459
- var transforms = new Map();
460
- var m; while (m = reg.exec(str)) { transforms.set(m[1], m[2]); }
461
- return transforms;
462
- }
463
-
464
- function getTransformValue(el, propName, animatable, unit) {
465
- var defaultVal = stringContains(propName, 'scale') ? 1 : 0 + getTransformUnit(propName);
466
- var value = getElementTransforms(el).get(propName) || defaultVal;
467
- if (animatable) {
468
- animatable.transforms.list.set(propName, value);
469
- animatable.transforms['last'] = propName;
470
- }
471
- return unit ? convertPxToUnit(el, value, unit) : value;
472
- }
473
-
474
- function getOriginalTargetValue(target, propName, unit, animatable) {
475
- switch (getAnimationType(target, propName)) {
476
- case 'transform': return getTransformValue(target, propName, animatable, unit);
477
- case 'css': return getCSSValue(target, propName, unit);
478
- case 'attribute': return getAttribute(target, propName);
479
- default: return target[propName] || 0;
480
- }
481
- }
482
-
483
- function getRelativeValue(to, from) {
484
- var operator = /^(\*=|\+=|-=)/.exec(to);
485
- if (!operator) { return to; }
486
- var u = getUnit(to) || 0;
487
- var x = parseFloat(from);
488
- var y = parseFloat(to.replace(operator[0], ''));
489
- switch (operator[0][0]) {
490
- case '+': return x + y + u;
491
- case '-': return x - y + u;
492
- case '*': return x * y + u;
493
- }
494
- }
495
-
496
- function validateValue(val, unit) {
497
- if (is.col(val)) { return colorToRgb(val); }
498
- if (/\s/g.test(val)) { return val; }
499
- var originalUnit = getUnit(val);
500
- var unitLess = originalUnit ? val.substr(0, val.length - originalUnit.length) : val;
501
- if (unit) { return unitLess + unit; }
502
- return unitLess;
503
- }
504
-
505
- // getTotalLength() equivalent for circle, rect, polyline, polygon and line shapes
506
- // adapted from https://gist.github.com/SebLambla/3e0550c496c236709744
507
-
508
- function getDistance(p1, p2) {
509
- return Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));
510
- }
511
-
512
- function getCircleLength(el) {
513
- return Math.PI * 2 * getAttribute(el, 'r');
514
- }
515
-
516
- function getRectLength(el) {
517
- return (getAttribute(el, 'width') * 2) + (getAttribute(el, 'height') * 2);
518
- }
519
-
520
- function getLineLength(el) {
521
- return getDistance(
522
- {x: getAttribute(el, 'x1'), y: getAttribute(el, 'y1')},
523
- {x: getAttribute(el, 'x2'), y: getAttribute(el, 'y2')}
524
- );
525
- }
526
-
527
- function getPolylineLength(el) {
528
- var points = el.points;
529
- var totalLength = 0;
530
- var previousPos;
531
- for (var i = 0 ; i < points.numberOfItems; i++) {
532
- var currentPos = points.getItem(i);
533
- if (i > 0) { totalLength += getDistance(previousPos, currentPos); }
534
- previousPos = currentPos;
535
- }
536
- return totalLength;
537
- }
538
-
539
- function getPolygonLength(el) {
540
- var points = el.points;
541
- return getPolylineLength(el) + getDistance(points.getItem(points.numberOfItems - 1), points.getItem(0));
542
- }
543
-
544
- // Path animation
545
-
546
- function getTotalLength(el) {
547
- if (el.getTotalLength) { return el.getTotalLength(); }
548
- switch(el.tagName.toLowerCase()) {
549
- case 'circle': return getCircleLength(el);
550
- case 'rect': return getRectLength(el);
551
- case 'line': return getLineLength(el);
552
- case 'polyline': return getPolylineLength(el);
553
- case 'polygon': return getPolygonLength(el);
554
- }
555
- }
556
-
557
- function setDashoffset(el) {
558
- var pathLength = getTotalLength(el);
559
- el.setAttribute('stroke-dasharray', pathLength);
560
- return pathLength;
561
- }
562
-
563
- // Motion path
564
-
565
- function getParentSvgEl(el) {
566
- var parentEl = el.parentNode;
567
- while (is.svg(parentEl)) {
568
- if (!is.svg(parentEl.parentNode)) { break; }
569
- parentEl = parentEl.parentNode;
570
- }
571
- return parentEl;
572
- }
573
-
574
- function getParentSvg(pathEl, svgData) {
575
- var svg = svgData || {};
576
- var parentSvgEl = svg.el || getParentSvgEl(pathEl);
577
- var rect = parentSvgEl.getBoundingClientRect();
578
- var viewBoxAttr = getAttribute(parentSvgEl, 'viewBox');
579
- var width = rect.width;
580
- var height = rect.height;
581
- var viewBox = svg.viewBox || (viewBoxAttr ? viewBoxAttr.split(' ') : [0, 0, width, height]);
582
- return {
583
- el: parentSvgEl,
584
- viewBox: viewBox,
585
- x: viewBox[0] / 1,
586
- y: viewBox[1] / 1,
587
- w: width,
588
- h: height,
589
- vW: viewBox[2],
590
- vH: viewBox[3]
591
- }
592
- }
593
-
594
- function getPath(path, percent) {
595
- var pathEl = is.str(path) ? selectString(path)[0] : path;
596
- var p = percent || 100;
597
- return function(property) {
598
- return {
599
- property: property,
600
- el: pathEl,
601
- svg: getParentSvg(pathEl),
602
- totalLength: getTotalLength(pathEl) * (p / 100)
603
- }
604
- }
605
- }
606
-
607
- function getPathProgress(path, progress, isPathTargetInsideSVG) {
608
- function point(offset) {
609
- if ( offset === void 0 ) offset = 0;
610
-
611
- var l = progress + offset >= 1 ? progress + offset : 0;
612
- return path.el.getPointAtLength(l);
613
- }
614
- var svg = getParentSvg(path.el, path.svg);
615
- var p = point();
616
- var p0 = point(-1);
617
- var p1 = point(+1);
618
- var scaleX = isPathTargetInsideSVG ? 1 : svg.w / svg.vW;
619
- var scaleY = isPathTargetInsideSVG ? 1 : svg.h / svg.vH;
620
- switch (path.property) {
621
- case 'x': return (p.x - svg.x) * scaleX;
622
- case 'y': return (p.y - svg.y) * scaleY;
623
- case 'angle': return Math.atan2(p1.y - p0.y, p1.x - p0.x) * 180 / Math.PI;
624
- }
625
- }
626
-
627
- // Decompose value
628
-
629
- function decomposeValue(val, unit) {
630
- // const rgx = /-?\d*\.?\d+/g; // handles basic numbers
631
- // const rgx = /[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?/g; // handles exponents notation
632
- var rgx = /[+-]?\d*\.?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?/g; // handles exponents notation
633
- var value = validateValue((is.pth(val) ? val.totalLength : val), unit) + '';
634
- return {
635
- original: value,
636
- numbers: value.match(rgx) ? value.match(rgx).map(Number) : [0],
637
- strings: (is.str(val) || unit) ? value.split(rgx) : []
638
- }
639
- }
640
-
641
- // Animatables
642
-
643
- function parseTargets(targets) {
644
- var targetsArray = targets ? (flattenArray(is.arr(targets) ? targets.map(toArray) : toArray(targets))) : [];
645
- return filterArray(targetsArray, function (item, pos, self) { return self.indexOf(item) === pos; });
646
- }
647
-
648
- function getAnimatables(targets) {
649
- var parsed = parseTargets(targets);
650
- return parsed.map(function (t, i) {
651
- return {target: t, id: i, total: parsed.length, transforms: { list: getElementTransforms(t) } };
652
- });
653
- }
654
-
655
- // Properties
656
-
657
- function normalizePropertyTweens(prop, tweenSettings) {
658
- var settings = cloneObject(tweenSettings);
659
- // Override duration if easing is a spring
660
- if (/^spring/.test(settings.easing)) { settings.duration = spring(settings.easing); }
661
- if (is.arr(prop)) {
662
- var l = prop.length;
663
- var isFromTo = (l === 2 && !is.obj(prop[0]));
664
- if (!isFromTo) {
665
- // Duration divided by the number of tweens
666
- if (!is.fnc(tweenSettings.duration)) { settings.duration = tweenSettings.duration / l; }
667
- } else {
668
- // Transform [from, to] values shorthand to a valid tween value
669
- prop = {value: prop};
670
- }
671
- }
672
- var propArray = is.arr(prop) ? prop : [prop];
673
- return propArray.map(function (v, i) {
674
- var obj = (is.obj(v) && !is.pth(v)) ? v : {value: v};
675
- // Default delay value should only be applied to the first tween
676
- if (is.und(obj.delay)) { obj.delay = !i ? tweenSettings.delay : 0; }
677
- // Default endDelay value should only be applied to the last tween
678
- if (is.und(obj.endDelay)) { obj.endDelay = i === propArray.length - 1 ? tweenSettings.endDelay : 0; }
679
- return obj;
680
- }).map(function (k) { return mergeObjects(k, settings); });
681
- }
682
-
683
-
684
- function flattenKeyframes(keyframes) {
685
- var propertyNames = filterArray(flattenArray(keyframes.map(function (key) { return Object.keys(key); })), function (p) { return is.key(p); })
686
- .reduce(function (a,b) { if (a.indexOf(b) < 0) { a.push(b); } return a; }, []);
687
- var properties = {};
688
- var loop = function ( i ) {
689
- var propName = propertyNames[i];
690
- properties[propName] = keyframes.map(function (key) {
691
- var newKey = {};
692
- for (var p in key) {
693
- if (is.key(p)) {
694
- if (p == propName) { newKey.value = key[p]; }
695
- } else {
696
- newKey[p] = key[p];
697
- }
698
- }
699
- return newKey;
700
- });
701
- };
702
-
703
- for (var i = 0; i < propertyNames.length; i++) loop( i );
704
- return properties;
705
- }
706
-
707
- function getProperties(tweenSettings, params) {
708
- var properties = [];
709
- var keyframes = params.keyframes;
710
- if (keyframes) { params = mergeObjects(flattenKeyframes(keyframes), params); }
711
- for (var p in params) {
712
- if (is.key(p)) {
713
- properties.push({
714
- name: p,
715
- tweens: normalizePropertyTweens(params[p], tweenSettings)
716
- });
717
- }
718
- }
719
- return properties;
720
- }
721
-
722
- // Tweens
723
-
724
- function normalizeTweenValues(tween, animatable) {
725
- var t = {};
726
- for (var p in tween) {
727
- var value = getFunctionValue(tween[p], animatable);
728
- if (is.arr(value)) {
729
- value = value.map(function (v) { return getFunctionValue(v, animatable); });
730
- if (value.length === 1) { value = value[0]; }
731
- }
732
- t[p] = value;
733
- }
734
- t.duration = parseFloat(t.duration);
735
- t.delay = parseFloat(t.delay);
736
- return t;
737
- }
738
-
739
- function normalizeTweens(prop, animatable) {
740
- var previousTween;
741
- return prop.tweens.map(function (t) {
742
- var tween = normalizeTweenValues(t, animatable);
743
- var tweenValue = tween.value;
744
- var to = is.arr(tweenValue) ? tweenValue[1] : tweenValue;
745
- var toUnit = getUnit(to);
746
- var originalValue = getOriginalTargetValue(animatable.target, prop.name, toUnit, animatable);
747
- var previousValue = previousTween ? previousTween.to.original : originalValue;
748
- var from = is.arr(tweenValue) ? tweenValue[0] : previousValue;
749
- var fromUnit = getUnit(from) || getUnit(originalValue);
750
- var unit = toUnit || fromUnit;
751
- if (is.und(to)) { to = previousValue; }
752
- tween.from = decomposeValue(from, unit);
753
- tween.to = decomposeValue(getRelativeValue(to, from), unit);
754
- tween.start = previousTween ? previousTween.end : 0;
755
- tween.end = tween.start + tween.delay + tween.duration + tween.endDelay;
756
- tween.easing = parseEasings(tween.easing, tween.duration);
757
- tween.isPath = is.pth(tweenValue);
758
- tween.isPathTargetInsideSVG = tween.isPath && is.svg(animatable.target);
759
- tween.isColor = is.col(tween.from.original);
760
- if (tween.isColor) { tween.round = 1; }
761
- previousTween = tween;
762
- return tween;
763
- });
764
- }
765
-
766
- // Tween progress
767
-
768
- var setProgressValue = {
769
- css: function (t, p, v) { return t.style[p] = v; },
770
- attribute: function (t, p, v) { return t.setAttribute(p, v); },
771
- object: function (t, p, v) { return t[p] = v; },
772
- transform: function (t, p, v, transforms, manual) {
773
- transforms.list.set(p, v);
774
- if (p === transforms.last || manual) {
775
- var str = '';
776
- transforms.list.forEach(function (value, prop) { str += prop + "(" + value + ") "; });
777
- t.style.transform = str;
778
- }
779
- }
780
- };
781
-
782
- // Set Value helper
783
-
784
- function setTargetsValue(targets, properties) {
785
- var animatables = getAnimatables(targets);
786
- animatables.forEach(function (animatable) {
787
- for (var property in properties) {
788
- var value = getFunctionValue(properties[property], animatable);
789
- var target = animatable.target;
790
- var valueUnit = getUnit(value);
791
- var originalValue = getOriginalTargetValue(target, property, valueUnit, animatable);
792
- var unit = valueUnit || getUnit(originalValue);
793
- var to = getRelativeValue(validateValue(value, unit), originalValue);
794
- var animType = getAnimationType(target, property);
795
- setProgressValue[animType](target, property, to, animatable.transforms, true);
796
- }
797
- });
798
- }
799
-
800
- // Animations
801
-
802
- function createAnimation(animatable, prop) {
803
- var animType = getAnimationType(animatable.target, prop.name);
804
- if (animType) {
805
- var tweens = normalizeTweens(prop, animatable);
806
- var lastTween = tweens[tweens.length - 1];
807
- return {
808
- type: animType,
809
- property: prop.name,
810
- animatable: animatable,
811
- tweens: tweens,
812
- duration: lastTween.end,
813
- delay: tweens[0].delay,
814
- endDelay: lastTween.endDelay
815
- }
816
- }
817
- }
818
-
819
- function getAnimations(animatables, properties) {
820
- return filterArray(flattenArray(animatables.map(function (animatable) {
821
- return properties.map(function (prop) {
822
- return createAnimation(animatable, prop);
823
- });
824
- })), function (a) { return !is.und(a); });
825
- }
826
-
827
- // Create Instance
828
-
829
- function getInstanceTimings(animations, tweenSettings) {
830
- var animLength = animations.length;
831
- var getTlOffset = function (anim) { return anim.timelineOffset ? anim.timelineOffset : 0; };
832
- var timings = {};
833
- timings.duration = animLength ? Math.max.apply(Math, animations.map(function (anim) { return getTlOffset(anim) + anim.duration; })) : tweenSettings.duration;
834
- timings.delay = animLength ? Math.min.apply(Math, animations.map(function (anim) { return getTlOffset(anim) + anim.delay; })) : tweenSettings.delay;
835
- timings.endDelay = animLength ? timings.duration - Math.max.apply(Math, animations.map(function (anim) { return getTlOffset(anim) + anim.duration - anim.endDelay; })) : tweenSettings.endDelay;
836
- return timings;
837
- }
838
-
839
- var instanceID = 0;
840
-
841
- function createNewInstance(params) {
842
- var instanceSettings = replaceObjectProps(defaultInstanceSettings, params);
843
- var tweenSettings = replaceObjectProps(defaultTweenSettings, params);
844
- var properties = getProperties(tweenSettings, params);
845
- var animatables = getAnimatables(params.targets);
846
- var animations = getAnimations(animatables, properties);
847
- var timings = getInstanceTimings(animations, tweenSettings);
848
- var id = instanceID;
849
- instanceID++;
850
- return mergeObjects(instanceSettings, {
851
- id: id,
852
- children: [],
853
- animatables: animatables,
854
- animations: animations,
855
- duration: timings.duration,
856
- delay: timings.delay,
857
- endDelay: timings.endDelay
858
- });
859
- }
860
-
861
- // Core
862
-
863
- var activeInstances = [];
864
-
865
- var engine = (function () {
866
- var raf;
867
-
868
- function play() {
869
- if (!raf && (!isDocumentHidden() || !anime.suspendWhenDocumentHidden) && activeInstances.length > 0) {
870
- raf = requestAnimationFrame(step);
871
- }
872
- }
873
- function step(t) {
874
- // memo on algorithm issue:
875
- // dangerous iteration over mutable `activeInstances`
876
- // (that collection may be updated from within callbacks of `tick`-ed animation instances)
877
- var activeInstancesLength = activeInstances.length;
878
- var i = 0;
879
- while (i < activeInstancesLength) {
880
- var activeInstance = activeInstances[i];
881
- if (!activeInstance.paused) {
882
- activeInstance.tick(t);
883
- i++;
884
- } else {
885
- activeInstances.splice(i, 1);
886
- activeInstancesLength--;
887
- }
888
- }
889
- raf = i > 0 ? requestAnimationFrame(step) : undefined;
890
- }
891
-
892
- function handleVisibilityChange() {
893
- if (!anime.suspendWhenDocumentHidden) { return; }
894
-
895
- if (isDocumentHidden()) {
896
- // suspend ticks
897
- raf = cancelAnimationFrame(raf);
898
- } else { // is back to active tab
899
- // first adjust animations to consider the time that ticks were suspended
900
- activeInstances.forEach(
901
- function (instance) { return instance ._onDocumentVisibility(); }
902
- );
903
- engine();
904
- }
905
- }
906
- if (typeof document !== 'undefined') {
907
- document.addEventListener('visibilitychange', handleVisibilityChange);
908
- }
909
-
910
- return play;
911
- })();
912
-
913
- function isDocumentHidden() {
914
- return !!document && document.hidden;
915
- }
916
-
917
- // Public Instance
918
-
919
- function anime(params) {
920
- if ( params === void 0 ) params = {};
921
-
922
-
923
- var startTime = 0, lastTime = 0, now = 0;
924
- var children, childrenLength = 0;
925
- var resolve = null;
926
-
927
- function makePromise(instance) {
928
- var promise = window.Promise && new Promise(function (_resolve) { return resolve = _resolve; });
929
- instance.finished = promise;
930
- return promise;
931
- }
932
-
933
- var instance = createNewInstance(params);
934
- var promise = makePromise(instance);
935
-
936
- function toggleInstanceDirection() {
937
- var direction = instance.direction;
938
- if (direction !== 'alternate') {
939
- instance.direction = direction !== 'normal' ? 'normal' : 'reverse';
940
- }
941
- instance.reversed = !instance.reversed;
942
- children.forEach(function (child) { return child.reversed = instance.reversed; });
943
- }
944
-
945
- function adjustTime(time) {
946
- return instance.reversed ? instance.duration - time : time;
947
- }
948
-
949
- function resetTime() {
950
- startTime = 0;
951
- lastTime = adjustTime(instance.currentTime) * (1 / anime.speed);
952
- }
953
-
954
- function seekChild(time, child) {
955
- if (child) { child.seek(time - child.timelineOffset); }
956
- }
957
-
958
- function syncInstanceChildren(time) {
959
- if (!instance.reversePlayback) {
960
- for (var i = 0; i < childrenLength; i++) { seekChild(time, children[i]); }
961
- } else {
962
- for (var i$1 = childrenLength; i$1--;) { seekChild(time, children[i$1]); }
963
- }
964
- }
965
-
966
- function setAnimationsProgress(insTime) {
967
- var i = 0;
968
- var animations = instance.animations;
969
- var animationsLength = animations.length;
970
- while (i < animationsLength) {
971
- var anim = animations[i];
972
- var animatable = anim.animatable;
973
- var tweens = anim.tweens;
974
- var tweenLength = tweens.length - 1;
975
- var tween = tweens[tweenLength];
976
- // Only check for keyframes if there is more than one tween
977
- if (tweenLength) { tween = filterArray(tweens, function (t) { return (insTime < t.end); })[0] || tween; }
978
- var elapsed = minMax(insTime - tween.start - tween.delay, 0, tween.duration) / tween.duration;
979
- var eased = isNaN(elapsed) ? 1 : tween.easing(elapsed);
980
- var strings = tween.to.strings;
981
- var round = tween.round;
982
- var numbers = [];
983
- var toNumbersLength = tween.to.numbers.length;
984
- var progress = (void 0);
985
- for (var n = 0; n < toNumbersLength; n++) {
986
- var value = (void 0);
987
- var toNumber = tween.to.numbers[n];
988
- var fromNumber = tween.from.numbers[n] || 0;
989
- if (!tween.isPath) {
990
- value = fromNumber + (eased * (toNumber - fromNumber));
991
- } else {
992
- value = getPathProgress(tween.value, eased * toNumber, tween.isPathTargetInsideSVG);
993
- }
994
- if (round) {
995
- if (!(tween.isColor && n > 2)) {
996
- value = Math.round(value * round) / round;
997
- }
998
- }
999
- numbers.push(value);
1000
- }
1001
- // Manual Array.reduce for better performances
1002
- var stringsLength = strings.length;
1003
- if (!stringsLength) {
1004
- progress = numbers[0];
1005
- } else {
1006
- progress = strings[0];
1007
- for (var s = 0; s < stringsLength; s++) {
1008
- var a = strings[s];
1009
- var b = strings[s + 1];
1010
- var n$1 = numbers[s];
1011
- if (!isNaN(n$1)) {
1012
- if (!b) {
1013
- progress += n$1 + ' ';
1014
- } else {
1015
- progress += n$1 + b;
1016
- }
1017
- }
1018
- }
1019
- }
1020
- setProgressValue[anim.type](animatable.target, anim.property, progress, animatable.transforms);
1021
- anim.currentValue = progress;
1022
- i++;
1023
- }
1024
- }
1025
-
1026
- function setCallback(cb) {
1027
- if (instance[cb] && !instance.passThrough) { instance[cb](instance); }
1028
- }
1029
-
1030
- function countIteration() {
1031
- if (instance.remaining && instance.remaining !== true) {
1032
- instance.remaining--;
1033
- }
1034
- }
1035
-
1036
- function setInstanceProgress(engineTime) {
1037
- var insDuration = instance.duration;
1038
- var insDelay = instance.delay;
1039
- var insEndDelay = insDuration - instance.endDelay;
1040
- var insTime = adjustTime(engineTime);
1041
- instance.progress = minMax((insTime / insDuration) * 100, 0, 100);
1042
- instance.reversePlayback = insTime < instance.currentTime;
1043
- if (children) { syncInstanceChildren(insTime); }
1044
- if (!instance.began && instance.currentTime > 0) {
1045
- instance.began = true;
1046
- setCallback('begin');
1047
- }
1048
- if (!instance.loopBegan && instance.currentTime > 0) {
1049
- instance.loopBegan = true;
1050
- setCallback('loopBegin');
1051
- }
1052
- if (insTime <= insDelay && instance.currentTime !== 0) {
1053
- setAnimationsProgress(0);
1054
- }
1055
- if ((insTime >= insEndDelay && instance.currentTime !== insDuration) || !insDuration) {
1056
- setAnimationsProgress(insDuration);
1057
- }
1058
- if (insTime > insDelay && insTime < insEndDelay) {
1059
- if (!instance.changeBegan) {
1060
- instance.changeBegan = true;
1061
- instance.changeCompleted = false;
1062
- setCallback('changeBegin');
1063
- }
1064
- setCallback('change');
1065
- setAnimationsProgress(insTime);
1066
- } else {
1067
- if (instance.changeBegan) {
1068
- instance.changeCompleted = true;
1069
- instance.changeBegan = false;
1070
- setCallback('changeComplete');
1071
- }
1072
- }
1073
- instance.currentTime = minMax(insTime, 0, insDuration);
1074
- if (instance.began) { setCallback('update'); }
1075
- if (engineTime >= insDuration) {
1076
- lastTime = 0;
1077
- countIteration();
1078
- if (!instance.remaining) {
1079
- instance.paused = true;
1080
- if (!instance.completed) {
1081
- instance.completed = true;
1082
- setCallback('loopComplete');
1083
- setCallback('complete');
1084
- if (!instance.passThrough && 'Promise' in window) {
1085
- resolve();
1086
- promise = makePromise(instance);
1087
- }
1088
- }
1089
- } else {
1090
- startTime = now;
1091
- setCallback('loopComplete');
1092
- instance.loopBegan = false;
1093
- if (instance.direction === 'alternate') {
1094
- toggleInstanceDirection();
1095
- }
1096
- }
1097
- }
1098
- }
1099
-
1100
- instance.reset = function() {
1101
- var direction = instance.direction;
1102
- instance.passThrough = false;
1103
- instance.currentTime = 0;
1104
- instance.progress = 0;
1105
- instance.paused = true;
1106
- instance.began = false;
1107
- instance.loopBegan = false;
1108
- instance.changeBegan = false;
1109
- instance.completed = false;
1110
- instance.changeCompleted = false;
1111
- instance.reversePlayback = false;
1112
- instance.reversed = direction === 'reverse';
1113
- instance.remaining = instance.loop;
1114
- children = instance.children;
1115
- childrenLength = children.length;
1116
- for (var i = childrenLength; i--;) { instance.children[i].reset(); }
1117
- if (instance.reversed && instance.loop !== true || (direction === 'alternate' && instance.loop === 1)) { instance.remaining++; }
1118
- setAnimationsProgress(instance.reversed ? instance.duration : 0);
1119
- };
1120
-
1121
- // internal method (for engine) to adjust animation timings before restoring engine ticks (rAF)
1122
- instance._onDocumentVisibility = resetTime;
1123
-
1124
- // Set Value helper
1125
-
1126
- instance.set = function(targets, properties) {
1127
- setTargetsValue(targets, properties);
1128
- return instance;
1129
- };
1130
-
1131
- instance.tick = function(t) {
1132
- now = t;
1133
- if (!startTime) { startTime = now; }
1134
- setInstanceProgress((now + (lastTime - startTime)) * anime.speed);
1135
- };
1136
-
1137
- instance.seek = function(time) {
1138
- setInstanceProgress(adjustTime(time));
1139
- };
1140
-
1141
- instance.pause = function() {
1142
- instance.paused = true;
1143
- resetTime();
1144
- };
1145
-
1146
- instance.play = function() {
1147
- if (!instance.paused) { return; }
1148
- if (instance.completed) { instance.reset(); }
1149
- instance.paused = false;
1150
- activeInstances.push(instance);
1151
- resetTime();
1152
- engine();
1153
- };
1154
-
1155
- instance.reverse = function() {
1156
- toggleInstanceDirection();
1157
- instance.completed = instance.reversed ? false : true;
1158
- resetTime();
1159
- };
1160
-
1161
- instance.restart = function() {
1162
- instance.reset();
1163
- instance.play();
1164
- };
1165
-
1166
- instance.remove = function(targets) {
1167
- var targetsArray = parseTargets(targets);
1168
- removeTargetsFromInstance(targetsArray, instance);
1169
- };
1170
-
1171
- instance.reset();
1172
-
1173
- if (instance.autoplay) { instance.play(); }
1174
-
1175
- return instance;
1176
-
1177
- }
1178
-
1179
- // Remove targets from animation
1180
-
1181
- function removeTargetsFromAnimations(targetsArray, animations) {
1182
- for (var a = animations.length; a--;) {
1183
- if (arrayContains(targetsArray, animations[a].animatable.target)) {
1184
- animations.splice(a, 1);
1185
- }
1186
- }
1187
- }
1188
-
1189
- function removeTargetsFromInstance(targetsArray, instance) {
1190
- var animations = instance.animations;
1191
- var children = instance.children;
1192
- removeTargetsFromAnimations(targetsArray, animations);
1193
- for (var c = children.length; c--;) {
1194
- var child = children[c];
1195
- var childAnimations = child.animations;
1196
- removeTargetsFromAnimations(targetsArray, childAnimations);
1197
- if (!childAnimations.length && !child.children.length) { children.splice(c, 1); }
1198
- }
1199
- if (!animations.length && !children.length) { instance.pause(); }
1200
- }
1201
-
1202
- function removeTargetsFromActiveInstances(targets) {
1203
- var targetsArray = parseTargets(targets);
1204
- for (var i = activeInstances.length; i--;) {
1205
- var instance = activeInstances[i];
1206
- removeTargetsFromInstance(targetsArray, instance);
1207
- }
1208
- }
1209
-
1210
- // Stagger helpers
1211
-
1212
- function stagger(val, params) {
1213
- if ( params === void 0 ) params = {};
1214
-
1215
- var direction = params.direction || 'normal';
1216
- var easing = params.easing ? parseEasings(params.easing) : null;
1217
- var grid = params.grid;
1218
- var axis = params.axis;
1219
- var fromIndex = params.from || 0;
1220
- var fromFirst = fromIndex === 'first';
1221
- var fromCenter = fromIndex === 'center';
1222
- var fromLast = fromIndex === 'last';
1223
- var isRange = is.arr(val);
1224
- var val1 = isRange ? parseFloat(val[0]) : parseFloat(val);
1225
- var val2 = isRange ? parseFloat(val[1]) : 0;
1226
- var unit = getUnit(isRange ? val[1] : val) || 0;
1227
- var start = params.start || 0 + (isRange ? val1 : 0);
1228
- var values = [];
1229
- var maxValue = 0;
1230
- return function (el, i, t) {
1231
- if (fromFirst) { fromIndex = 0; }
1232
- if (fromCenter) { fromIndex = (t - 1) / 2; }
1233
- if (fromLast) { fromIndex = t - 1; }
1234
- if (!values.length) {
1235
- for (var index = 0; index < t; index++) {
1236
- if (!grid) {
1237
- values.push(Math.abs(fromIndex - index));
1238
- } else {
1239
- var fromX = !fromCenter ? fromIndex%grid[0] : (grid[0]-1)/2;
1240
- var fromY = !fromCenter ? Math.floor(fromIndex/grid[0]) : (grid[1]-1)/2;
1241
- var toX = index%grid[0];
1242
- var toY = Math.floor(index/grid[0]);
1243
- var distanceX = fromX - toX;
1244
- var distanceY = fromY - toY;
1245
- var value = Math.sqrt(distanceX * distanceX + distanceY * distanceY);
1246
- if (axis === 'x') { value = -distanceX; }
1247
- if (axis === 'y') { value = -distanceY; }
1248
- values.push(value);
1249
- }
1250
- maxValue = Math.max.apply(Math, values);
1251
- }
1252
- if (easing) { values = values.map(function (val) { return easing(val / maxValue) * maxValue; }); }
1253
- if (direction === 'reverse') { values = values.map(function (val) { return axis ? (val < 0) ? val * -1 : -val : Math.abs(maxValue - val); }); }
1254
- }
1255
- var spacing = isRange ? (val2 - val1) / maxValue : val1;
1256
- return start + (spacing * (Math.round(values[i] * 100) / 100)) + unit;
1257
- }
1258
- }
1259
-
1260
- // Timeline
1261
-
1262
- function timeline(params) {
1263
- if ( params === void 0 ) params = {};
1264
-
1265
- var tl = anime(params);
1266
- tl.duration = 0;
1267
- tl.add = function(instanceParams, timelineOffset) {
1268
- var tlIndex = activeInstances.indexOf(tl);
1269
- var children = tl.children;
1270
- if (tlIndex > -1) { activeInstances.splice(tlIndex, 1); }
1271
- function passThrough(ins) { ins.passThrough = true; }
1272
- for (var i = 0; i < children.length; i++) { passThrough(children[i]); }
1273
- var insParams = mergeObjects(instanceParams, replaceObjectProps(defaultTweenSettings, params));
1274
- insParams.targets = insParams.targets || params.targets;
1275
- var tlDuration = tl.duration;
1276
- insParams.autoplay = false;
1277
- insParams.direction = tl.direction;
1278
- insParams.timelineOffset = is.und(timelineOffset) ? tlDuration : getRelativeValue(timelineOffset, tlDuration);
1279
- passThrough(tl);
1280
- tl.seek(insParams.timelineOffset);
1281
- var ins = anime(insParams);
1282
- passThrough(ins);
1283
- children.push(ins);
1284
- var timings = getInstanceTimings(children, params);
1285
- tl.delay = timings.delay;
1286
- tl.endDelay = timings.endDelay;
1287
- tl.duration = timings.duration;
1288
- tl.seek(0);
1289
- tl.reset();
1290
- if (tl.autoplay) { tl.play(); }
1291
- return tl;
1292
- };
1293
- return tl;
1294
- }
1295
-
1296
- anime.version = '3.2.1';
1297
- anime.speed = 1;
1298
- // TODO:#review: naming, documentation
1299
- anime.suspendWhenDocumentHidden = true;
1300
- anime.running = activeInstances;
1301
- anime.remove = removeTargetsFromActiveInstances;
1302
- anime.get = getOriginalTargetValue;
1303
- anime.set = setTargetsValue;
1304
- anime.convertPx = convertPxToUnit;
1305
- anime.path = getPath;
1306
- anime.setDashoffset = setDashoffset;
1307
- anime.stagger = stagger;
1308
- anime.timeline = timeline;
1309
- anime.easing = parseEasings;
1310
- anime.penner = penner;
1311
- anime.random = function (min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; };
1312
-
1313
- module.exports = anime;