-
Notifications
You must be signed in to change notification settings - Fork 4
/
fullpage.js
5991 lines (4974 loc) · 187 KB
/
fullpage.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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
* fullPage 4.0.20
* https://github.com/alvarotrigo/fullPage.js
*
* @license GPLv3 for open source use only
* or Fullpage Commercial License for commercial use
* http://alvarotrigo.com/fullPage/pricing/
*
* Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.fullpage = factory());
})(this, (function () { 'use strict';
// https://tc39.github.io/ecma262/#sec-array.prototype.find
if (!Array.prototype.find) {
Object.defineProperty(Array.prototype, 'find', {
value: function value(predicate) {
// 1. Let O be ? ToObject(this value).
if (this == null) {
throw new TypeError('"this" is null or not defined');
}
var o = Object(this); // 2. Let len be ? ToLength(? Get(O, "length")).
var len = o.length >>> 0; // 3. If IsCallable(predicate) is false, throw a TypeError exception.
if (typeof predicate !== 'function') {
throw new TypeError('predicate must be a function');
} // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
var thisArg = arguments[1]; // 5. Let k be 0.
var k = 0; // 6. Repeat, while k < len
while (k < len) {
// a. Let Pk be ! ToString(k).
// b. Let kValue be ? Get(O, Pk).
// c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
// d. If testResult is true, return kValue.
var kValue = o[k];
if (predicate.call(thisArg, kValue, k, o)) {
return kValue;
} // e. Increase k by 1.
k++;
} // 7. Return undefined.
return undefined;
}
});
}
// Production steps of ECMA-262, Edition 6, 22.1.2.1
if (!Array.from) {
Array.from = function () {
var toStr = Object.prototype.toString;
var isCallable = function isCallable(fn) {
return typeof fn === 'function' || toStr.call(fn) === '[object Function]';
};
var toInteger = function toInteger(value) {
var number = Number(value);
if (isNaN(number)) {
return 0;
}
if (number === 0 || !isFinite(number)) {
return number;
}
return (number > 0 ? 1 : -1) * Math.floor(Math.abs(number));
};
var maxSafeInteger = Math.pow(2, 53) - 1;
var toLength = function toLength(value) {
var len = toInteger(value);
return Math.min(Math.max(len, 0), maxSafeInteger);
}; // The length property of the from method is 1.
return function from(arrayLike
/*, mapFn, thisArg */
) {
// 1. Let C be the this value.
var C = this; // 2. Let items be ToObject(arrayLike).
var items = Object(arrayLike); // 3. ReturnIfAbrupt(items).
if (arrayLike == null) {
throw new TypeError('Array.from requires an array-like object - not null or undefined');
} // 4. If mapfn is undefined, then let mapping be false.
var mapFn = arguments.length > 1 ? arguments[1] : void undefined;
var T;
if (typeof mapFn !== 'undefined') {
// 5. else
// 5. a If IsCallable(mapfn) is false, throw a TypeError exception.
if (!isCallable(mapFn)) {
throw new TypeError('Array.from: when provided, the second argument must be a function');
} // 5. b. If thisArg was supplied, let T be thisArg; else let T be undefined.
if (arguments.length > 2) {
T = arguments[2];
}
} // 10. Let lenValue be Get(items, "length").
// 11. Let len be ToLength(lenValue).
var len = toLength(items.length); // 13. If IsConstructor(C) is true, then
// 13. a. Let A be the result of calling the [[Construct]] internal method
// of C with an argument list containing the single item len.
// 14. a. Else, Let A be ArrayCreate(len).
var A = isCallable(C) ? Object(new C(len)) : new Array(len); // 16. Let k be 0.
var k = 0; // 17. Repeat, while k < len… (also steps a - h)
var kValue;
while (k < len) {
kValue = items[k];
if (mapFn) {
A[k] = typeof T === 'undefined' ? mapFn(kValue, k) : mapFn.call(T, kValue, k);
} else {
A[k] = kValue;
}
k += 1;
} // 18. Let putStatus be Put(A, "length", len, true).
A.length = len; // 20. Return A.
return A;
};
}();
}
var win = window;
var doc = document;
var isTouchDevice = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|playbook|silk|BlackBerry|BB10|Windows Phone|Tizen|Bada|webOS|IEMobile|Opera Mini)/);
var isMacDevice = /(Mac|iPhone|iPod|iPad)/i.test(win.navigator.userAgent); // @ts-ignore
var isTouch = 'ontouchstart' in win || navigator.msMaxTouchPoints > 0 || navigator.maxTouchPoints;
var isIE11 = !!window.MSInputMethodContext && !!document.documentMode; // taken from https://github.com/udacity/ud891/blob/gh-pages/lesson2-focus/07-modals-and-keyboard-traps/solution/modal.js
var focusableElementsString = 'a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], [contenteditable]'; // cache common elements
var FP = {
test: {},
shared: {}
};
var extensions = ['parallax', 'scrollOverflowReset', 'dragAndMove', 'offsetSections', 'fadingEffect', 'responsiveSlides', 'continuousHorizontal', 'interlockedSlides', 'scrollHorizontally', 'resetSliders', 'cards', 'dropEffect', 'waterEffect'];
/**
* forEach polyfill for IE
* https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Browser_Compatibility
*/
if (win.NodeList && !NodeList.prototype.forEach) {
NodeList.prototype.forEach = function (callback, thisArg) {
thisArg = thisArg || window;
for (var i = 0; i < this.length; i++) {
callback.call(thisArg, this[i], i, this);
}
};
}
if (typeof Object.assign != 'function') {
// Must be writable: true, enumerable: false, configurable: true
Object.defineProperty(Object, 'assign', {
value: function assign(target, varArgs) {
if (target == null) {
// TypeError if undefined or null
throw new TypeError('Cannot convert undefined or null to object');
}
var to = Object(target);
for (var index = 1; index < arguments.length; index++) {
var nextSource = arguments[index];
if (nextSource != null) {
// Skip over if undefined or null
for (var nextKey in nextSource) {
// Avoid bugs when hasOwnProperty is shadowed
if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {
to[nextKey] = nextSource[nextKey];
}
}
}
}
return to;
},
writable: true,
configurable: true
});
}
// https://stackoverflow.com/questions/51719553/padstart-not-working-in-ie11
// https://github.com/behnammodi/polyfill/blob/master/string.polyfill.js
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart
if (!String.prototype.padStart) {
String.prototype.padStart = function padStart(targetLength, padString) {
targetLength = targetLength >> 0; //truncate if number or convert non-number to 0;
padString = String(typeof padString !== 'undefined' ? padString : ' ');
if (this.length > targetLength) {
return String(this);
} else {
targetLength = targetLength - this.length;
if (targetLength > padString.length) {
padString += Array.apply(null, Array(targetLength)).map(function () {
return padString;
}).join("");
}
return padString.slice(0, targetLength) + String(this);
}
};
}
//utils
/**
* Shows a message in the console of the given type.
*/
function showError(type, text) {
win.console && win.console[type] && win.console[type]('fullPage: ' + text);
}
function isVisible(el) {
var style = win.getComputedStyle(el);
return style.display !== 'none';
}
function getVisible(elements) {
return Array.from(elements).filter(function (e) {
return isVisible(e);
});
}
/**
* Equivalent of jQuery function $().
*/
function $(selector, context) {
context = arguments.length > 1 ? context : document;
return context ? context.querySelectorAll(selector) : null;
}
/**
* Extends a given Object properties and its childs.
*/
function deepExtend(out) {
out = out || {};
for (var i = 1, len = arguments.length; i < len; ++i) {
var obj = arguments[i];
if (!obj) {
continue;
}
for (var key in obj) {
if (!obj.hasOwnProperty(key) || key == '__proto__' || key == 'constructor') {
continue;
} // based on https://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/
if (Object.prototype.toString.call(obj[key]) === '[object Object]') {
out[key] = deepExtend(out[key], obj[key]);
continue;
}
out[key] = obj[key];
}
}
return out;
}
/**
* Checks if the passed element contains the passed class.
*/
function hasClass(el, className) {
if (el == null) {
return false;
}
return el.classList.contains(className);
}
/**
* Gets the window height. Crossbrowser.
*/
function getWindowHeight() {
return 'innerHeight' in win ? win.innerHeight : doc.documentElement.offsetHeight;
}
/**
* Gets the window width.
*/
function getWindowWidth() {
return win.innerWidth;
}
/**
* Set's the CSS properties for the passed item/s.
* @param {NodeList|HTMLElement|Object} items
* @param {Object} props css properties and values.
*/
function css(items, props) {
items = getList(items);
var key;
for (key in props) {
if (props.hasOwnProperty(key)) {
if (key !== null) {
for (var i = 0; i < items.length; i++) {
var item = items[i];
item.style[key] = props[key];
}
}
}
}
return items;
}
/**
* Gets the previous element to the passed element.
*/
function prev(item) {
return item.previousElementSibling;
}
/**
* Gets the next element to the passed element.
*/
function next(item) {
return item.nextElementSibling;
}
/**
* Gets the last element from the passed list of elements.
*/
function last(item) {
return item[item.length - 1];
}
/**
* Gets index from the passed element.
* @param {String} selector is optional.
*/
function index(item, selector) {
item = isArrayOrList(item) ? item[0] : item;
var children = selector != null ? $(selector, item.parentNode) : item.parentNode.childNodes;
var num = 0;
for (var i = 0; i < children.length; i++) {
if (children[i] == item) return num;
if (children[i].nodeType == 1) num++;
}
return -1;
}
/**
* Gets an iterable element for the passed element/s
*/
function getList(item) {
return !isArrayOrList(item) ? [item] : item;
}
/**
* Adds the display=none property for the passed element/s
*/
function hide(el) {
el = getList(el);
for (var i = 0; i < el.length; i++) {
el[i].style.display = 'none';
}
return el;
}
/**
* Adds the display=block property for the passed element/s
*/
function show(el) {
el = getList(el);
for (var i = 0; i < el.length; i++) {
el[i].style.display = 'block';
}
return el;
}
/**
* Checks if the passed element is an iterable element or not
*/
function isArrayOrList(el) {
return Object.prototype.toString.call(el) === '[object Array]' || Object.prototype.toString.call(el) === '[object NodeList]';
}
/**
* Adds the passed class to the passed element/s
*/
function addClass(el, className) {
el = getList(el);
for (var i = 0; i < el.length; i++) {
var item = el[i];
item.classList.add(className);
}
return el;
}
/**
* Removes the passed class to the passed element/s
* @param {String} `className` can be multiple classnames separated by whitespace
*/
function removeClass(el, className) {
el = getList(el);
var classNames = className.split(' ');
for (var a = 0; a < classNames.length; a++) {
className = classNames[a];
for (var i = 0; i < el.length; i++) {
var item = el[i];
item.classList.remove(className);
}
}
return el;
}
/**
* Appends the given element ot the given parent.
*/
function appendTo(el, parent) {
parent.appendChild(el);
}
/**
Usage:
var wrapper = document.createElement('div');
wrapper.className = 'fp-slides';
wrap($('.slide'), wrapper);
https://jsfiddle.net/qwzc7oy3/15/ (vanilla)
https://jsfiddle.net/oya6ndka/1/ (jquery equivalent)
*/
function wrap(toWrap, wrapper, isWrapAll) {
var newParent;
wrapper = wrapper || doc.createElement('div');
for (var i = 0; i < toWrap.length; i++) {
var item = toWrap[i];
if (isWrapAll && !i || !isWrapAll) {
newParent = wrapper.cloneNode(true);
item.parentNode.insertBefore(newParent, item);
}
newParent.appendChild(item);
}
return toWrap;
}
/**
Usage:
var wrapper = document.createElement('div');
wrapper.className = 'fp-slides';
wrap($('.slide'), wrapper);
https://jsfiddle.net/qwzc7oy3/27/ (vanilla)
https://jsfiddle.net/oya6ndka/4/ (jquery equivalent)
*/
function wrapAll(toWrap, wrapper) {
wrap(toWrap, wrapper, true);
}
/**
* Usage:
* wrapInner(document.querySelector('#pepe'), '<div class="test">afdas</div>');
* wrapInner(document.querySelector('#pepe'), element);
*
* https://jsfiddle.net/zexxz0tw/6/
*
* https://stackoverflow.com/a/21817590/1081396
*/
function wrapInner(parent, wrapper) {
parent.appendChild(wrapper);
while (parent.firstChild !== wrapper) {
wrapper.appendChild(parent.firstChild);
}
}
/**
* Usage:
* unwrap(document.querySelector('#pepe'));
* unwrap(element);
*
* https://jsfiddle.net/szjt0hxq/1/
*
*/
function unwrap(wrapper) {
var wrapperContent = doc.createDocumentFragment();
while (wrapper.firstChild) {
wrapperContent.appendChild(wrapper.firstChild);
}
wrapper.parentNode.replaceChild(wrapperContent, wrapper);
}
/**
* http://stackoverflow.com/questions/22100853/dom-pure-javascript-solution-to-jquery-closest-implementation
* Returns the element or `false` if there's none
*/
function closest(el, selector) {
if (el && el.nodeType === 1) {
if (matches(el, selector)) {
return el;
}
return closest(el.parentNode, selector);
}
return null;
}
/**
* Places one element (rel) after another one or group of them (reference).
* @param {HTMLElement} reference
* @param {HTMLElement|NodeList|String|Array} el
* https://jsfiddle.net/9s97hhzv/1/
*/
function after(reference, el) {
insertBefore(reference, reference.nextSibling, el);
}
/**
* Places one element (rel) before another one or group of them (reference).
* @param {HTMLElement} reference
* @param {HTMLElement|NodeList|String|Array} el
* https://jsfiddle.net/9s97hhzv/1/
*/
function before(reference, el) {
insertBefore(reference, reference, el);
}
/**
* Based in https://stackoverflow.com/a/19316024/1081396
* and https://stackoverflow.com/a/4793630/1081396
*/
function insertBefore(reference, beforeElement, el) {
if (!isArrayOrList(el)) {
if (typeof el == 'string') {
el = createElementFromHTML(el);
}
el = [el];
}
for (var i = 0; i < el.length; i++) {
reference.parentNode.insertBefore(el[i], beforeElement);
}
} //http://stackoverflow.com/questions/3464876/javascript-get-window-x-y-position-for-scroll
function getScrollTop() {
var docElement = doc.documentElement;
return (win.pageYOffset || docElement.scrollTop) - (docElement.clientTop || 0);
}
/**
* Gets the siblings of the passed element
*/
function siblings(el) {
return Array.prototype.filter.call(el.parentNode.children, function (child) {
return child !== el;
});
}
function preventDefault(event) {
event.preventDefault();
}
function getAttr(el, attr) {
return el.getAttribute(attr);
}
function docAddEvent(event, callback, options) {
doc.addEventListener(event, callback, options === 'undefined' ? null : options);
}
function windowAddEvent(event, callback, options) {
win.addEventListener(event, callback, options === 'undefined' ? null : options);
}
function docRemoveEvent(event, callback, options) {
doc.removeEventListener(event, callback, options === 'undefined' ? null : options);
}
function windowRemoveEvent(event, callback, options) {
win.removeEventListener(event, callback, options === 'undefined' ? null : options);
}
/**
* Determines whether the passed item is of function type.
*/
function isFunction(item) {
if (typeof item === 'function') {
return true;
}
var type = Object.prototype.toString.call(item);
return type === '[object Function]' || type === '[object GeneratorFunction]';
}
/**
* Trigger custom events
*/
function trigger(el, eventName, data) {
var event;
data = typeof data === 'undefined' ? {} : data; // Native
if (typeof win.CustomEvent === "function") {
event = new CustomEvent(eventName, {
detail: data
});
} else {
event = doc.createEvent('CustomEvent');
event.initCustomEvent(eventName, true, true, data);
}
el.dispatchEvent(event);
}
/**
* Polyfill of .matches()
*/
function matches(el, selector) {
return (el.matches || el.matchesSelector || el.msMatchesSelector || el.mozMatchesSelector || el.webkitMatchesSelector || el.oMatchesSelector).call(el, selector);
}
/**
* Toggles the visibility of the passed element el.
*/
function toggle(el, value) {
if (typeof value === "boolean") {
for (var i = 0; i < el.length; i++) {
el[i].style.display = value ? 'block' : 'none';
}
} //we don't use it in other way, so no else :)
return el;
}
/**
* Creates a HTMLElement from the passed HTML string.
* https://stackoverflow.com/a/494348/1081396
*/
function createElementFromHTML(htmlString) {
var div = doc.createElement('div');
div.innerHTML = htmlString.trim(); // Change this to div.childNodes to support multiple top-level nodes
return div.firstChild;
}
/**
* Removes the passed item/s from the DOM.
*/
function remove(items) {
items = getList(items);
for (var i = 0; i < items.length; i++) {
var item = items[i];
if (item && item.parentElement) {
item.parentNode.removeChild(item);
}
}
} //https://jsfiddle.net/w1rktecz/
function untilAll(item, selector, fn) {
var sibling = item[fn];
var siblings = [];
while (sibling) {
if (matches(sibling, selector) || selector == null) {
siblings.push(sibling);
}
sibling = sibling[fn];
}
return siblings;
}
/**
* Gets all next elements matching the passed selector.
*/
function nextAll(item, selector) {
return untilAll(item, selector, 'nextElementSibling');
}
/**
* Gets all previous elements matching the passed selector.
*/
function prevAll(item, selector) {
return untilAll(item, selector, 'previousElementSibling');
}
/**
* Converts an object to an array.
*/
function toArray(objectData) {
return Object.keys(objectData).map(function (key) {
return objectData[key];
});
}
function getLast(items) {
return items[items.length - 1];
}
/**
* Gets the average of the last `number` elements of the given array.
*/
function getAverage(elements, number) {
var sum = 0; //taking `number` elements from the end to make the average, if there are not enought, 1
var lastElements = elements.slice(Math.max(elements.length - number, 1));
for (var i = 0; i < lastElements.length; i++) {
sum = sum + lastElements[i];
}
return Math.ceil(sum / number);
}
/**
* Sets the value for the given attribute from the `data-` attribute with the same suffix
* ie: data-srcset ==> srcset | data-src ==> src
*/
function setSrc(element, attribute) {
element.setAttribute(attribute, getAttr(element, 'data-' + attribute));
element.removeAttribute('data-' + attribute);
}
function getParentsUntil(item, topParentSelector) {
var parents = [item];
do {
item = item.parentNode;
parents.push(item);
} while (!matches(item, topParentSelector));
return parents;
}
function isInsideInput() {
var activeElement = doc.activeElement;
return matches(activeElement, 'textarea') || matches(activeElement, 'input') || matches(activeElement, 'select') || getAttr(activeElement, 'contentEditable') == "true" || getAttr(activeElement, 'contentEditable') == '';
} //utils are public, so we can use it wherever we want
// @ts-ignore
window["fp_utils"] = {
"$": $,
"deepExtend": deepExtend,
"hasClass": hasClass,
"getWindowHeight": getWindowHeight,
"css": css,
"prev": prev,
"next": next,
"last": last,
"index": index,
"getList": getList,
"hide": hide,
"show": show,
"isArrayOrList": isArrayOrList,
"addClass": addClass,
"removeClass": removeClass,
"appendTo": appendTo,
"wrap": wrap,
"wrapAll": wrapAll,
"unwrap": unwrap,
"closest": closest,
"after": after,
"before": before,
"insertBefore": insertBefore,
"getScrollTop": getScrollTop,
"siblings": siblings,
"preventDefault": preventDefault,
"isFunction": isFunction,
"trigger": trigger,
"matches": matches,
"toggle": toggle,
"createElementFromHTML": createElementFromHTML,
"remove": remove,
// "filter": filter,
"untilAll": untilAll,
"nextAll": nextAll,
"prevAll": prevAll,
"showError": showError
};
var utils = /*#__PURE__*/Object.freeze({
__proto__: null,
showError: showError,
isVisible: isVisible,
getVisible: getVisible,
$: $,
deepExtend: deepExtend,
hasClass: hasClass,
getWindowHeight: getWindowHeight,
getWindowWidth: getWindowWidth,
css: css,
prev: prev,
next: next,
last: last,
index: index,
getList: getList,
hide: hide,
show: show,
isArrayOrList: isArrayOrList,
addClass: addClass,
removeClass: removeClass,
appendTo: appendTo,
wrap: wrap,
wrapAll: wrapAll,
wrapInner: wrapInner,
unwrap: unwrap,
closest: closest,
after: after,
before: before,
insertBefore: insertBefore,
getScrollTop: getScrollTop,
siblings: siblings,
preventDefault: preventDefault,
getAttr: getAttr,
docAddEvent: docAddEvent,
windowAddEvent: windowAddEvent,
docRemoveEvent: docRemoveEvent,
windowRemoveEvent: windowRemoveEvent,
isFunction: isFunction,
trigger: trigger,
matches: matches,
toggle: toggle,
createElementFromHTML: createElementFromHTML,
remove: remove,
untilAll: untilAll,
nextAll: nextAll,
prevAll: prevAll,
toArray: toArray,
getLast: getLast,
getAverage: getAverage,
setSrc: setSrc,
getParentsUntil: getParentsUntil,
isInsideInput: isInsideInput
});
function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
_typeof = function (obj) {
return typeof obj;
};
} else {
_typeof = function (obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};
}
return _typeof(obj);
}
var EventEmitter = {
events: {},
on: function on(event, listener) {
var _this = this;
if (_typeof(this.events[event]) !== 'object') {
this.events[event] = [];
}
this.events[event].push(listener);
return function () {
return _this.removeListener(event, listener);
};
},
removeListener: function removeListener(event, listener) {
if (_typeof(this.events[event]) === 'object') {
var idx = this.events[event].indexOf(listener);
if (idx > -1) {
this.events[event].splice(idx, 1);
}
}
},
emit: function emit(event) {
var _this2 = this;
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
if (_typeof(this.events[event]) === 'object') {
this.events[event].forEach(function (listener) {
return listener.apply(_this2, args);
});
}
},
once: function once(event, listener) {
var _this3 = this;
var remove = this.on(event, function () {
remove();
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
args[_key2] = arguments[_key2];
}
listener.apply(_this3, args);
});
}
};
var state = {
numSections: 0,
numSlides: 0,
slides: [],
sections: [],
activeSection: null,
scrollTrigger: null,
isBeyondFullpage: false,
aboutToScrollToFullPage: false,
slideMoving: false,
isResizing: false,
isScrolling: false,
lastScrolledDestiny: undefined,
lastScrolledSlide: undefined,
activeAnimation: false,
canScroll: true,
touchDirection: 'none',
wheelDirection: 'none',
isGrabbing: false,
isUsingWheel: false,
isWindowFocused: true,
previousDestTop: 0,
windowsHeight: getWindowHeight(),
isDoingContinousVertical: false,
timeouts: {},
scrollY: 0,
scrollX: 0
}; // @ts-ignore
win.state = state;
function setState(props) {
Object.assign(state, props);
}
function getState() {
return state;
}
function getActivePanel() {
return state.activeSection && state.activeSection.activeSlide ? state.activeSection.activeSlide : state.activeSection;
}
var events = {
onAfterRenderNoAnchor: 'onAfterRenderNoAnchor',
onClickOrTouch: 'onClickOrTouch',
moveSlideLeft: 'moveSlideLeft',
moveSlideRight: 'moveSlideRight',
onInitialise: 'onInitialise',
beforeInit: 'beforeInit',
bindEvents: 'bindEvents',
onDestroy: 'onDestroy',
contentChanged: 'contentChanged',
onScrollOverflowScrolled: 'onScrollOverflowScrolled',
onScrollPageAndSlide: 'onScrollPageAndSlide',