-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathanimate.js
176 lines (140 loc) · 4.46 KB
/
animate.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
const animate = (() => {
"use strict";
const defaults = {
delay: 0,
duration: 400,
easing: "ease"
};
// array utils ===================================================================================
const head = (arr) => {
return arr[0];
};
const tail = (arr) => {
return arr.slice(1);
};
const contains = (() => {
return Array.prototype.includes
? (arr, value) => arr.includes(value)
: (arr, value) => arr.some(el => el === value)
})();
const toArray = (obj) => {
if (obj.nodeType) {
return [obj];
}
if (Array.isArray(obj)) {
return obj;
}
return [...obj];
};
// params utils ==================================================================================
const requireParams = (func) => {
return params => {
if (typeof params != "object") return;
func(params);
};
};
const getParamsEl = (el) => {
return toArray(typeof el == "string" ? selectElements(el) : el);
};
// misc utils ====================================================================================
const selectElements = (selector, context = document) => {
if (/^[\#.]?[\w-]+$/.test(selector)) {
if (head(selector) == ".") {
return context.getElementsByClassName(tail(selector));
}
if (head(selector) == "#") {
return context.getElementById(tail(selector));
}
return context.getElementsByTagName(selector);
}
return context.querySelectorAll(selector);
};
const hasUnit = (value) => {
return /\D$/.test(value);
};
// transition ====================================================================================
const setTransition = (() => {
const addUnit = (value) => {
if (hasUnit(value)) {
return value;
}
return value + "ms";
};
return (el, params) => {
var transition = {
"property": "opacity," + transformProperty(),
"duration": addUnit(params.duration || defaults.duration),
"timing-function": params.easing || defaults.easing,
"delay": addUnit(params.delay || defaults.delay)
};
Object.keys(transition).forEach((prop) => {
el.style["transition-" + prop] = transition[prop];
});
};
})();
const clearTransition = (params) => {
const clearListener = (event) => {
event.target.removeEventListener("transitionend", clearListener);
if (!params.complete) return;
params.complete.call(event.target);
};
return clearListener;
};
// opacity =======================================================================================
const setOpacity = (el, params) => {
if (params.opacity == undefined) return;
el.style.opacity = params.opacity;
};
// transform =====================================================================================
const transformProperty = (() => {
var transform;
return () => {
if (!transform) {
transform = "transform" in document.body.style ? "transform" : "-webkit-transform";
}
return transform;
};
})();
const isTransform = (() => {
const ignore = ["complete", "el", "opacity"].concat(Object.keys(defaults));
return (key) => !contains(ignore, key);
})();
const getTransformFunctions = (params) => {
return Object.keys(params).filter((key) => {
return isTransform(key);
});
};
const setTransform = (() => {
const addUnit = (transformFunction, value) => {
if (hasUnit(value) || /scale/.test(transformFunction)) {
return value;
}
if (/rotate|skew/.test(transformFunction)) {
return value + "deg";
}
return value + "px";
};
return (el, params) => {
const transforms = getTransformFunctions(params);
if (!transforms.length) return;
el.style[transformProperty()] = transforms.map((func) => {
return func + "(" + addUnit(func, params[func]) + ")";
}).join(" ");
};
})();
// init ==========================================================================================
const setStyle = (params) => {
return (el) => {
// wait for the next frame
requestAnimationFrame(() => {
[setTransition, setOpacity, setTransform].forEach((func) => {
func(el, params);
});
});
el.addEventListener("transitionend", clearTransition(params));
};
};
return requireParams((params) => {
getParamsEl(params.el).forEach(setStyle(params));
});
})();