forked from Dogfalo/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparallax.js
135 lines (109 loc) · 3.45 KB
/
parallax.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
(function($, Vel) {
'use strict';
let _defaults = {
};
class Parallax {
constructor(el, options) {
// If exists, destroy and reinitialize
if (!!el.M_Parallax) {
el.M_Parallax.destroy();
}
this.el = el;
this.$el = $(el);
this.el.M_Parallax = this;
this.options = $.extend({}, Parallax.defaults, options);
this.$img = this.$el.find('img').first();
this._updateParallax();
this._setupEventHandlers();
this._setupStyles();
Parallax._parallaxes.push(this);
}
static get defaults() {
return _defaults;
}
static init($els, options) {
let arr = [];
$els.each(function() {
arr.push(new Parallax(this, options));
});
return arr;
}
/**
* Get Instance
*/
getInstance() {
return this;
}
/**
* Teardown component
*/
destroy() {
}
static _handleScroll() {
for(let i = 0; i < Parallax._parallaxes.length; i++) {
let parallaxInstance = Parallax._parallaxes[i];
parallaxInstance._updateParallax.call(parallaxInstance);
}
}
_setupEventHandlers() {
this._handleImageLoadBound = this._handleImageLoad.bind(this);
this.$img[0].addEventListener('load', this._handleImageLoadBound);
if (Parallax._parallaxes.length === 0) {
Parallax._handleScrollThrottled = Materialize.throttle(Parallax._handleScroll, 5);
window.addEventListener('scroll', Parallax._handleScrollThrottled);
}
}
_setupStyles() {
this.$img[0].style.opacity = 1;
}
_handleImageLoad() {
this._updateParallax();
this.$img.each(function() {
let el = this;
if (el.complete) $(el).trigger("load");
});
}
_updateParallax() {
let containerHeight = this.$el.height() > 0 ? this.el.parentNode.offsetHeight : 500;
let imgHeight = this.$img[0].offsetHeight;
let parallaxDist = imgHeight - containerHeight;
let bottom = this.$el.offset().top + containerHeight;
let top = this.$el.offset().top;
let scrollTop = Materialize.getDocumentScrollTop();
let windowHeight = window.innerHeight;
let windowBottom = scrollTop + windowHeight;
let percentScrolled = (windowBottom - top) / (containerHeight + windowHeight);
let parallax = parallaxDist * percentScrolled;
if (bottom > scrollTop && top < scrollTop + windowHeight) {
this.$img[0].style.transform = `translate3D(-50%, ${parallax}px, 0)`;
}
}
}
/**
* @static
* @memberof Parallax
*/
Parallax._parallaxes = [];
Materialize.Parallax = Parallax;
jQuery.fn.parallax = function(methodOrOptions) {
// Call plugin method if valid method name is passed in
if (Parallax.prototype[methodOrOptions]) {
// Getter methods
if (methodOrOptions.slice(0,3) === 'get') {
return this.first()[0].M_Parallax[methodOrOptions]();
// Void methods
} else {
return this.each(function() {
this.M_Parallax[methodOrOptions]();
});
}
// Initialize plugin if options or no argument is passed in
} else if ( typeof methodOrOptions === 'object' || ! methodOrOptions ) {
Parallax.init(this, arguments[0]);
return this;
// Return error if an unrecognized method name is passed in
} else {
jQuery.error(`Method ${methodOrOptions} does not exist on jQuery.parallax`);
}
};
})(cash, Materialize.Vel);