-
Notifications
You must be signed in to change notification settings - Fork 0
/
back.js
89 lines (73 loc) · 2.74 KB
/
back.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
/**
Copyright 2013 Willian Gustavo Veiga
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*globals window */
var WillianVeiga = WillianVeiga || {};
WillianVeiga.Scroll = WillianVeiga.Scroll || {};
(function (namespace) {
'use strict';
var defaultOptions,
element,
storeOginalElementStyle,
originalElementStyle = {},
setInitialElementStyle,
restoreOriginalElementStyle,
clickEvent,
scrollEvent;
defaultOptions = {showLinkAfter: 10};
namespace.Back = function (inputElement, options) {
var option;
element = inputElement;
for (option in options) {
if (options.hasOwnProperty(option)) {
defaultOptions[option] = options[option];
}
}
storeOginalElementStyle();
setInitialElementStyle();
};
namespace.Back.prototype.bindEvents = function () {
element.addEventListener('click', clickEvent);
window.addEventListener('scroll', scrollEvent);
setInitialElementStyle();
};
namespace.Back.prototype.unbindEvents = function () {
element.removeEventListener('click', clickEvent);
window.removeEventListener('scroll', scrollEvent);
restoreOriginalElementStyle();
};
storeOginalElementStyle = function () {
var style = window.getComputedStyle(element);
originalElementStyle.position = style.getPropertyValue('position');
originalElementStyle.display = style.getPropertyValue('display');
};
setInitialElementStyle = function () {
var style = element.style;
style.position = 'fixed';
style.display = 'none';
};
restoreOriginalElementStyle = function () {
var style = element.style;
style.position = originalElementStyle.position;
style.display = originalElementStyle.display;
};
clickEvent = function (event) {
event.preventDefault();
window.scrollTo(0, 0);
};
scrollEvent = function () {
element.style.display = this.scrollY >= defaultOptions.showLinkAfter
? 'block'
: 'none';
};
}(WillianVeiga.Scroll));