forked from realjoshharrison/jquery-disablescroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.disablescroll.js
executable file
·145 lines (113 loc) · 3.83 KB
/
jquery.disablescroll.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
/**
* $.disablescroll
* Author: Josh Harrison - aloofdesign.com
*
* Disables scroll events from mousewheels, touchmoves and keypresses.
* Use while jQuery is animating the scroll position for a guaranteed super-smooth ride!
*/
;(function($) {
"use strict";
// Privates
var instance;
var _handleKeydown = function(event) {
for (var i = 0; i < this.opts.scrollEventKeys.length; i++) {
if (event.keyCode === this.opts.scrollEventKeys[i]) {
event.preventDefault();
return;
}
}
};
var _handleWheel = function(event) {
var dD = this.opts.disabledDirections; //alias
if(this.opts.onlyWebkitSafe === false){
event.preventDefault();
return;
}
if (event.originalEvent.type === "mousewheel"){
//webkit
if(event.originalEvent.wheelDeltaY){
if(event.originalEvent.wheelDeltaY > 0 && dD[0]) event.preventDefault(); // up
if(event.originalEvent.wheelDeltaY < 0 && dD[1]) event.preventDefault(); // down
}
if(event.originalEvent.wheelDeltaX){
if(event.originalEvent.wheelDeltaX > 0 && dD[2]) event.preventDefault(); // left
if(event.originalEvent.wheelDeltaX < 0 && dD[3]) event.preventDefault(); // right
}
}
};
function addIfNotExist(array,item){
if($.inArray(array,item) === -1) array.push(item);
}
// The object
function UserScrollDisabler($container, options) {
// spacebar: 32, pageup: 33, pagedown: 34, end: 35, home: 36
// left: 37, up: 38, right: 39, down: 40
//disabledDirections up, down, left, right
this.opts = $.extend({
handleWheel : true,
handleKeys : true,
scrollEventKeys : [],
disabledDirections : [1,1,1,1],
onlyWebkitSafe: false
}, options);
this.$container = $container;
this.$document = $(document);
this.disable();
}
UserScrollDisabler.prototype = {
disable : function() {
var t = this;
if(t.opts.handleWheel){
t.$container.on("mousewheel.UserScrollDisabler DOMMouseScroll.UserScrollDisabler touchmove.UserScrollDisabler", function(event) {
_handleWheel.call(t, event);
});
}
if(t.opts.handleKeys) {
if(t.opts.disabledDirections) {
var dD = t.opts.disabledDirections; //alias
if (dD[0]){
addIfNotExist(t.opts.scrollEventKeys,33); //pageup
addIfNotExist(t.opts.scrollEventKeys,36); //home
addIfNotExist(t.opts.scrollEventKeys,38); //pageup
}
if (dD[1]){
addIfNotExist(t.opts.scrollEventKeys,32); //spacebar
addIfNotExist(t.opts.scrollEventKeys,34); //pagedown
addIfNotExist(t.opts.scrollEventKeys,35); //end
addIfNotExist(t.opts.scrollEventKeys,40); //down
}
if (dD[2]) addIfNotExist(t.opts.scrollEventKeys,37); //left
if (dD[3]) addIfNotExist(t.opts.scrollEventKeys,39); //right
}
t.$document.on("keydown.UserScrollDisabler", function(event) {
_handleKeydown.call(t, event);
});
}
},
undo : function() {
var t = this;
t.$container.off(".UserScrollDisabler");
if(t.opts.handleKeys) {
t.$document.off(".UserScrollDisabler");
}
}
};
// Plugin wrapper for object
$.fn.disablescroll = function(method) {
// If calling for the first time, instantiate the object and cache in this closure.
// Plugin can therefore only be instantiated once per page.
// Can pass options object in through the method parameter.
if( ! instance && (typeof method === "object" || ! method)) {
instance = new UserScrollDisabler(this, method); // this = jquery collection to act on = $(window), hopefully!
}
// Instance already created, and a method is being explicitly called, e.g. .disablescroll('undo');
else if(instance && instance[method]) {
instance[method].call(instance);
}
// No method called explicitly, so assume 'disable' is intended.
// E.g. calling .disablescroll(); again after a prior instantiation and undo.
else if(instance) {
instance.disable.call(instance);
}
};
})(jQuery);