This repository has been archived by the owner on Feb 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
jquery.js
117 lines (101 loc) · 3.17 KB
/
jquery.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
var morlock = require('./api');
var BreakpointController = require('./controllers/breakpoint-controller');
var StickyElementController = require('./controllers/sticky-element-controller');
var ResponsiveImage = require('./core/responsive-image');
function defineJQueryPlugins($) {
$.fn.morlockResize = function(options) {
return $(this).each(function() {
if (this !== window) {
// console.log('must attach event to window', this);
return;
}
var $this = $(this);
morlock.onResize(function(d) {
$this.trigger('morlockResize', d);
});
morlock.onResizeEnd(function(d) {
$this.trigger('morlockResizeEnd', d);
}, options);
});
};
$.fn.morlockScroll = function() {
return $(this).each(function() {
if (this !== window) {
// console.log('must attach event to window', this);
return;
}
var $this = $(this);
morlock.onScroll(function() {
$this.trigger('morlockScroll');
});
morlock.onScrollEnd(function() {
$this.trigger('morlockScrollEnd');
});
});
};
$.fn.morlockElementPosition = function(position) {
return $(this).each(function() {
if (this !== window) {
// console.log('must attach event to window', this);
return;
}
var $this = $(this);
morlock.position.before(position, function() {
$this.trigger('morlockElementPositionBefore', position);
});
morlock.position.after(position, function() {
$this.trigger('morlockElementPositionAfter', position);
});
});
};
$.fn.morlockBreakpoint = function(options) {
return $(this).each(function() {
if (this !== window) {
// console.log('must attach event to window', this);
return;
}
var $this = $(this);
var controller = new BreakpointController(options);
controller.on('breakpoint', function(e) {
$this.trigger('morlockBreakpoint', e);
});
});
};
$.fn.morlockElementVisible = function(options) {
return $(this).each(function() {
var $this = $(this);
var observer = morlock.observeElement(this, options);
observer.on('enter', function() {
$this.trigger('morlockElementVisibleEnter');
});
observer.on('exit', function() {
$this.trigger('morlockElementVisibleExit');
});
});
};
$.fn.morlockStickyElement = function(elementsSelector, options) {
return $(this).each(function() {
var container = this;
$(container).find(elementsSelector).each(function() {
$(this).data(
'morlockStickyElementController',
new StickyElementController(this, container, options)
);
});
});
};
$.fn.morlockResponsiveImage = function(options) {
return $(this).each(function() {
var $this = $(this);
var controller = ResponsiveImage.createFromElement(this, options);
controller.on('load', function(img) {
$this.trigger('morlockResponsiveImageLoaded', img);
});
$this.data(
'morlockResponsiveImageController',
controller
);
});
};
}
module.exports = { defineJQueryPlugins: defineJQueryPlugins };