-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimateTransition_original.js
198 lines (172 loc) · 6.64 KB
/
animateTransition_original.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
var animateTransition = (function(){
"use strict";
var prefixes = ["webkit", "moz", "MS", "o", ""],
overlay = document.createElement('div');
overlay.className = 'transition-overlay';
// Utils
function showOverlay() {
document.body.appendChild(overlay);
}
function hideOverlay() {
if (overlay.parentNode) {
document.body.removeChild(overlay);
}
}
function getElement(selector) {
if (!selector) {
return null;
}
return selector.tagName ? selector : document.querySelector(selector);
}
function addPrefixedEvent(element, eventName, callback) {
for (var i = 0; i < prefixes.length; i++) {
if (!prefixes[i]) {
eventName = eventName.toLowerCase();
}
element.addEventListener(prefixes[i]+eventName, callback, false);
}
}
function removePrefixedEvent(element, eventName, callback) {
for (var i = 0; i < prefixes.length; i++) {
if (!prefixes[i]) {
eventName = eventName.toLowerCase();
}
element.removeEventListener(prefixes[i]+eventName, callback, false);
}
}
function hasClass(obj,cname) {
return (obj.className ? obj.className.match(new RegExp('(\\s|^)'+cname+'(\\s|$)')) : false);
}
function addClass(obj,cname) {
if (obj && !hasClass(obj,cname)) {
obj.className += " "+cname;
}
}
function removeClass(obj,cname) {
if (obj && hasClass(obj,cname)) {
obj.className=obj.className.replace(new RegExp('(\\s|^)'+cname+'(?=\\s|$)'),'');
}
}
function getFakeEventObj(name) {
return {
type: 'fake',
animationName: name || 'none',
stopPropagation: function() {}
}
}
function pagesTransition(options) {
var container,
pageIn,
pageOut,
animationName,
pageInClassName,
pageOutClassName,
transitionTypeName,
beforeTransition,
onTransitionStart,
onTransitionEnd,
timer,
timeOut = 3500;
// initialize options
options = options || {};
container = getElement(options.container) || document.body;
pageIn = getElement(options.pageIn);
pageOut = getElement(options.pageOut);
animationName = options.animation || 'none';
beforeTransition = options.beforeTransition || function() {};
onTransitionStart = options.onTransitionStart || function() {};
onTransitionEnd = options.onTransitionEnd || function() {};
pageInClassName = animationName + '-transition-view-to-show';
pageOutClassName = animationName + '-transition-view-to-hide';
transitionTypeName = 'transition-' + animationName;
if (pageIn === pageOut) { return; }
// Stop animation if any of pages still in animation process
if ( (pageIn && pageIn.busy) || (pageOut && pageOut.busy)) {
window.console.log("You try apply new animation cannot be applied to the same element until previous animation is not finished.");
}
// You can use beforeTransition callback to define extra logic.
// If result of the callback will be false then pages transition will be aborted.
if (beforeTransition && beforeTransition(pageIn, pageOut, container) === false) {
return;
}
// Init onAnimationStart event handler
function onAnimationStart(e) {
if (e.animationName !== animationName) {
return;
}
onTransitionStart(pageIn, pageOut, container, e);
removePrefixedEvent(container, 'AnimationStart', onAnimationStart);
}
addPrefixedEvent(container, 'AnimationStart', onAnimationStart);
// Init onAnimationEnd event handler
function onAnimationEnd(e) {
if (e.animationName !== animationName) {
return;
}
e.stopPropagation();
if (pageIn) {
pageIn.busy = false;
}
if (pageOut) {
pageOut.busy = false;
if(pageOut.parentNode === container){
container.removeChild(pageOut);
}
removeClass(pageOut, pageOutClassName);
}
onTransitionEnd(pageIn, pageOut, container, e);
removeClass(container, transitionTypeName);
removeClass(pageIn, pageInClassName);
if (timer) {
clearTimeout(timer);
}
hideOverlay();
removePrefixedEvent(container, 'AnimationEnd', onAnimationEnd);
}
addPrefixedEvent(container, 'AnimationEnd', onAnimationEnd);
// If animation was not set - show new page without transition
if (animationName === 'none') {
if (pageIn) {
container.appendChild(pageIn);
}
onTransitionStart(pageIn, pageOut, container, getFakeEventObj());
if (pageOut) {
try {
container.removeChild(pageOut);
} catch (err) {
window.console.log('You try apply new animation without subject');
}
onTransitionEnd(pageIn, pageOut, container, getFakeEventObj());
} else {
onTransitionEnd(pageIn, pageOut, container, getFakeEventObj());
}
return;
}
// Init pages transition:
// ----------------------
// Prepare new page for transition.
if (pageIn) {
pageIn.busy = true;
addClass(pageIn, pageInClassName);
container.appendChild(pageIn);
// we don't need pageOut.offsetHeight; because we add it with css class
}
if (pageOut) {
pageOut.busy = true;
addClass(pageOut, pageOutClassName);
pageOut.offsetHeight; // plz don't delete it - it hack
}
// Enable overlay layer to protect from accidental clicks until animation ends
showOverlay();
// Set timeout for case if onAnimationEnd event will not occur
timer = window.setTimeout(function() {
onAnimationEnd( getFakeEventObj(animationName) );
}, timeOut);
// Add predefined CSS class to start CSS animation
addClass(container, transitionTypeName);
}
return pagesTransition;
}());
if (typeof exports !== "undefined") {
exports.module = animateTransition;
}