-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathtweenExtra.js
73 lines (64 loc) · 1.78 KB
/
tweenExtra.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
import connect from '../objects/connect';
import Tween from './tween';
// to do
// * per property easing
// * per property duration
// * per property callback
// * per property delay/offset
// * new update method to work with the above
// * other cool ideas
/**
* The `KUTE.TweenExtra()` constructor creates a new `Tween` object
* for a single `HTMLElement` and returns it.
*
* This constructor is intended for experiments or testing of new features.
*/
export default class TweenExtra extends Tween {
/**
* @param {KUTE.tweenParams} args (*target*, *startValues*, *endValues*, *options*)
* @returns {TweenExtra} the resulting Tween object
*/
constructor(...args) {
super(...args); // import constructor of TweenBase -> Tween
return this;
}
// additional methods
// set/override property
// to(property, value) {
// TO DO
// this.valuesEnd[property] = value // well that's not all
// }
// fromTo(property, value) {
// TO DO
// this.valuesEnd[property] = value // well that's not all
// }
// getTotalDuration() {
// to do
// }
/**
* Method to add callbacks on the fly.
* @param {string} name callback name
* @param {Function} fn callback function
* @returns {TweenExtra}
*/
on(name, fn) {
if (['start', 'stop', 'update', 'complete', 'pause', 'resume'].indexOf(name) > -1) {
this[`_on${name.charAt(0).toUpperCase() + name.slice(1)}`] = fn;
}
return this;
}
/**
* Method to set options on the fly.
* * accepting [repeat,yoyo,delay,repeatDelay,easing]
*
* @param {string} option the tick time
* @param {string | number | number[]} value the tick time
* @returns {TweenExtra}
*/
option(option, value) {
this[`_${option}`] = value;
return this;
}
}
// Tween Interface
connect.tween = TweenExtra;